この行はそれを行う必要があります:
sed -e "s/\b\(.\)/\u\1/g"
awk
の使用 :
awk '{for(i=1;i<=NF;i++){ $i=toupper(substr($i,1,1)) substr($i,2) }}1' file
出力は次のようになります:
Trouble Me
Gold Rush Brides
この行はそれを行う必要があります:
sed -e "s/\b\(.\)/\u\1/g"
awk
の使用 :
awk '{for(i=1;i<=NF;i++){ $i=toupper(substr($i,1,1)) substr($i,2) }}1' file
出力は次のようになります:
Trouble Me
Gold Rush Brides