Date: Fri, 16 Sep 2005 12:03:26 -0400 From: Chuck Swiger <cswiger@mac.com> To: Yavuz Maslak <maslak@ihlas.net.tr> Cc: freebsd-questions@freebsd.org Subject: Re: how to convert lower case to uppercase in a word in a line ? Message-ID: <432AECCE.8040901@mac.com> In-Reply-To: <015201c5bad6$78eaf940$dc96eed5@ihlasnetym> References: <015201c5bad6$78eaf940$dc96eed5@ihlasnetym>
next in thread | previous in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?432AECCE.8040901>