[olug] Unix Tip: ANOTHER CASE TRANSLATION
    Unix Guru Universe 
    listserv at ugu.com
       
    Mon Jun  9 15:32:00 UTC 2003
    
    
  
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
			      UNIX GURU UNIVERSE 
			         UNIX HOT TIP
			Unix Tip 1986 - June  9, 2003
		    http://www.ugu.com/sui/ugu/show?tip.today
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
ANOTHER CASE TRANSLATION
If you have occasion where 
you need to translate upper 
case to lower and vice 
versa, and happen to run a 
ksh, enter the following 
functions into your .profile:
function trans
{
tr '[:upper:]' '[:lower:]' < $1 > $2
}
function TRANS
{
tr '[:lower:]' '[:upper:]' <$1 > $2
}
The first function will 
translate all uppercase 
letters in the first file 
(argument) to lowercase in 
the second file.
The second function TRANS does the exact opposite.
--------------------------------------------------------------------------
To Subscribe:    http://www.ugu.com/sui/ugu/show?tip.subscribe
To Unsubscribe:  http://www.ugu.com/sui/ugu/show?tip.unsubscribe
To Submit A Tip: http://www.ugu.com/sui/ugu/show?tip.today
==========================================================================
DISCLAIMER: All UNIX HOT TIPS ARE OWNED BY THE UNIX GURU UNIVERSE AND ARE
NOT TO BE SOLD, PRINTED OR USED WITHOUT THE WRITTEN CONSENT OF THE UNIX 
GURU UNIVERSE. ALL TIPS ARE "USE AT YOUR OWN RISK". UGU  ADVISES THAT 
ALL TIPS BE TESTED IN A NON-PRODUCTION DEVELOPMENT ENVIRONMENT FIRST.
Unix Guru Universe - www.ugu.com - tips at ugu.com - Copyright 1994-2001
==========================================================================
    
    
More information about the OLUG
mailing list