Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to surpress screen output when using dd conv 1

Status
Not open for further replies.

raypru

Technical User
Apr 9, 2002
26
GB
I am using the following command:

export ENV=`echo $ORACLE_SID | dd conv=lcase`

How can I avoid the following output to my screen:

0+1 records in.
0+1 records out.


Thanks
 
hi ,

you can do this

echo $ORACLE_SID | dd conv=lcase 2>/dev/null

why don't you do this if you just want to convert to lower case

echo $ORACLE_SID | tr 'A-Z' 'a-z'

( look at man page man tr )

hth

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top