Unix2dos: Difference between revisions

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

Latest revision as of 01:59, 20 January 2013

A simple but effective script that inserts the /r (Carriage Return) character for DOS-based text files so that you don't have long, continous lines when viewing under windows.


#!/bin/sh

echo "unix2dos"
for file in "$@"
do  
  awk 'sub("$", "\r")' $file > $file.dos
done