The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #3 (permalink)  
Old 01-09-2007
mheinen mheinen is offline
Registered User
  
 

Join Date: Jan 2007
Posts: 6
You put me on the right track. I ended up using sed and successfully stripped off the ^Z at the end of the file by using:

sed '/^Z/d' myfile|cat > newfile

Thanks for the help.