Re: Regex help needed

From: Stephane CHAZELAS (this.address_at_is.invalid)
Date: 06/17/04


Date: 17 Jun 2004 17:54:39 GMT

2004-06-17, 22:35(+05), Alexey G Khramkov:
[...]
> cat src | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz > dst

Shorter as:

< src LC_ALL=C tr '[A-Z]' '[a-z]' > dst

Why are you con*cat*atenating a single file? That makes no
sense.

-- 
Stephane