how to convert lower case to uppercase in a word in a line ?

2005-09-16 Thread Yavuz Maslak
Hello 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 ? Thanks ___ freebsd-questions@freebsd.org mailing list

Re: how to convert lower case to uppercase in a word in a line ?

2005-09-16 Thread Andrew P.
proxy# echo Word | tr [:lower:] [:upper:] WORD On 9/16/05, Yavuz Maslak [EMAIL PROTECTED] wrote: Hello 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 ? Thanks

Re: how to convert lower case to uppercase in a word in a line ?

2005-09-16 Thread Chuck Swiger
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:]'

Re: how to convert lower case to uppercase in a word in a line ?

2005-09-16 Thread Jonathan Glaschke
Hello, On Fri, Sep 16, 2005 at 06:51:16PM +0300, Yavuz Maslak wrote: Hello 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 ? Thanks ___ Or you do this

Re: how to convert lower case to uppercase in a word in a line ?

2005-09-16 Thread Andrew P.
On 9/16/05, Jonathan Glaschke [EMAIL PROTECTED] wrote: Hello, On Fri, Sep 16, 2005 at 06:51:16PM +0300, Yavuz Maslak wrote: Hello 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 ? Thanks

Re: how to convert lower case to uppercase in a word in a line ?

2005-09-16 Thread Philip Hallstrom
On 9/16/05, Jonathan Glaschke [EMAIL PROTECTED] wrote: Hello, On Fri, Sep 16, 2005 at 06:51:16PM +0300, Yavuz Maslak wrote: Hello 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 ? Thanks

Re: how to convert lower case to uppercase in a word in a line ?

2005-09-16 Thread Bob Johnson
On 9/16/05, Yavuz Maslak [EMAIL PROTECTED] wrote: Hello 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 ? No one's suggested dd yet: dd if=filename.txt conv=ucase of=newfilename.txt - Bob

Re: how to convert lower case to uppercase in a word in a line ?

2005-09-16 Thread Kevin Kinsey
Andrew P. wrote: On 9/16/05, Jonathan Glaschke [EMAIL PROTECTED] wrote: Hello, On Fri, Sep 16, 2005 at 06:51:16PM +0300, Yavuz Maslak wrote: Hello There is a word that consists lowercases. How to change all of letters capital letters in stead of lowercase ? is there any script about

Re: how to convert lower case to uppercase in a word in a line ?

2005-09-16 Thread Tom Norris
I have heard of INTERCAL and BrainF*ck, but who cares next? What about COW? http://www.bigzaphod.org/cow/ or whitespace? http://compsoc.dur.ac.uk/whitespace/ And I DO care.. just not enough to write a to-uppercase function :) -Tom ___