Re: [expert] Handy text change case utility?

2002-10-14 Thread Toshiro
El dom, 13-10-2002 a las 17:53, Damon Lynch escribió: Hi, Is there a small application out there, that will take selected text, and convert its case to a desired case, and put it into the buffer again? For instance, what would be most useful is: UPPER CASE -- Mixed Case That Can Save a

Re: [expert] Handy text change case utility?

2002-10-14 Thread Damon Lynch
On Tue, 2002-10-15 at 14:08, Toshiro wrote: To uppercase: sed 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/' file To lowercase: sed 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/' file Hi Toshiro, Thanks for that. I've never used sed before. Do I need a

Re: [expert] Handy text change case utility?

2002-10-14 Thread Damon Lynch
If anyone is interested, I'm implementing it using python and giving it a web interface. Damon Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com

[expert] Handy text change case utility?

2002-10-13 Thread Damon Lynch
Hi, Is there a small application out there, that will take selected text, and convert its case to a desired case, and put it into the buffer again? For instance, what would be most useful is: UPPER CASE -- Mixed Case That Can Save a Lot of Time Because it Knows About Exceptions and ACRONYMS

Re: [expert] Handy text change case utility?

2002-10-13 Thread Jack Coates
On Sun, 2002-10-13 at 13:53, Damon Lynch wrote: Hi, Is there a small application out there, that will take selected text, and convert its case to a desired case, and put it into the buffer again? For instance, what would be most useful is: UPPER CASE -- Mixed Case That Can Save a Lot of