Yavuz Maslak wrote:
There is a word that consists lowercases. How to change all of letters capital letters in stead of lowercase ?is there any script about that ?
Edit the file in emacs and hit Esc-U to upcase words? Or perhaps something like this:
echo "hello" | tr '[:lower:]' '[:upper:]' ...? -- -Chuck _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
