Dos2unix

From wikipost
Jump to navigation Jump to search

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