view wrappers/unix2dos @ 425:312b8acb65aa

Fix bad link that was confusing people. (Oops.)
author Rob Landley <rob@landley.net>
date Fri, 03 Feb 2012 22:39:55 -0600
parents 7da386057101
children
line wrap: on
line source

#!/bin/sh
#HELP usage: unix2dos [FILE...]\n\nAdd DOS newlines

[ $# -ne 0 ] && DASH_I=-i
sed $DASH_I -e 's/$/\r/' "$@"