Quote:
Originally Posted by nrbhole
hi
I want to suppress the output of dos2unix command in my shell script. I'm using follwing command in my script
dos2unix somefile >/dev/null
But it's still showing output while executing the script.Please help me to sort this out
Thanks
|
hope u want to see only errors not exectued onces right???
try this
dos2uix folder/*.* > text
folder which contains files need for conversion.
this should work.
