The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #4 (permalink)  
Old 01-25-2008
ashokmeti ashokmeti is offline
Registered User
 

Join Date: Jan 2008
Location: Bangalooru
Posts: 15
hi

Quote:
Originally Posted by nrbhole View Post
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.
Reply With Quote