Aug 7, 2002 #1 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
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
Aug 7, 2002 1 #2 DSMARWAY Technical User Jun 25, 2002 640 GB 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 Upvote 0 Downvote
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