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>
This commit is contained in:
Pere Orga
2012-02-09 18:23:33 +01:00
committed by Denys Vlasenko
parent 594db1e62a
commit d0222503ff
4 changed files with 22 additions and 0 deletions

5
applets_sh/dos2unix Executable file
View File

@@ -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$//' "$@"