次の行の各単語の最初の文字をどのように大文字に変換しますかgr-description:
?
たとえば、
$ cat /tmp/test1
groMail:
[email protected]
gr-description:
abc-location-999
group-emailid:
[email protected]
members:
[email protected]
[email protected]
[email protected]
出力は
groMail:
[email protected]
gr-description:
Abc-Location-999
group-emailid:
[email protected]
members:
[email protected]
[email protected]
[email protected]
次のコマンドを試しましたが、マージできません
sed -n '/gr-description:/{n;p;}' grp1 | sed 's/\<./\u&/g'