Unix2dos

From wikipost
Revision as of 01:59, 20 January 2013 by Admin (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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