Uppercasing First Letter of Words Using SED April 3, 2023 by Tarik This line should do it: sed -e "s/\b\(.\)/\u\1/g"