android_mt6572_jiabo/external/busybox/applets_sh/unix2dos
2025-09-05 16:56:03 +08:00

5 lines
155 B
Bash
Executable file

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