busybox/applets_sh/unix2dos
<<
>>
Prefs
   1#!/bin/sh
   2# TODO: use getopt to avoid parsing options as filenames,
   3# and to support -- and --help
   4[ $# -ne 0 ] && DASH_I=-i
   5sed $DASH_I -e 's/$/\r/' "$@"
   6