view wrappers/unix2dos @ 599:4d0498e1f657

A few more links for the index.
author Rob Landley <rob@landley.net>
date Thu, 14 Jun 2012 00:33:33 -0500
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/' "$@"