Dos2unix: Difference between revisions

From wikipost
Jump to navigation Jump to search
No edit summary
 
(No difference)

Latest revision as of 01:39, 20 January 2013

A simple but effective script that strips out the /r (Carriage Return) character from DOS-based text files so that you don't see ^M at the end of every line when viewing under linux.


#!/bin/sh

echo "dos2unix"
for file in "$@"
do
  tr -d "\r" <$file>$file.unix
done