Berkeley CSUA MOTD:Entry 20063
Berkeley CSUA MOTD
 
WIKI | FAQ | Tech FAQ
http://csua.com/feed/
2025/05/24 [General] UID:1000 Activity:popular
5/24    

2000/12/11-12 [Computer/SW/Unix] UID:20063 Activity:high
12/9    I'm using cygwin and sed. I need to do a tolower. I can't rely on
        perl.
        \_ sed y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/
        \_ save yourself from having to type the above and use
           tr '[a-z]' '[A-Z]'
           \_ Or "tr A-Z a-z" which is several characters shorter and works.