commit | d0222503ff9ff264efa74f6de651b308d20a05b8 | [log] [tgz] |
---|---|---|
author | Pere Orga <gotrunks@gmail.com> | Thu Feb 09 18:23:33 2012 +0100 |
committer | Denys Vlasenko <vda.linux@googlemail.com> | Thu Feb 09 18:23:33 2012 +0100 |
tree | 7eb01024fd36dfebc5f303a3cc408766925b1604 | |
parent | 594db1e62a060a0a5646f6840112189fd0ce3b81 [diff] [blame] |
applets_sh/*: Add a few more examples of "shell applets" Signed-off-by: Pere Orga <gotrunks@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
diff --git a/applets_sh/unix2dos b/applets_sh/unix2dos new file mode 100755 index 0000000..70e0429 --- /dev/null +++ b/applets_sh/unix2dos
@@ -0,0 +1,5 @@ +#!/bin/sh +# TODO: use getopt to avoid parsing options as filenames, +# and to support -- and --help +[ $# -ne 0 ] && DASH_I=-i +sed $DASH_I -e 's/$/\r/' "$@"