diff options
author | Rob Landley <rob@landley.net> | 2012-01-22 20:33:15 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2012-01-22 20:33:15 -0600 |
commit | 5b67c38f86318bfa8ff8e631aa9c5e0ea1a70c64 (patch) | |
tree | 0e81b3df4326f46f3144e46b0198d6bf4a1a1995 /wrappers/dos2unix | |
parent | 4c2484f46f969414b2aaf08300d80a81f18edcb1 (diff) | |
download | toybox-5b67c38f86318bfa8ff8e631aa9c5e0ea1a70c64.tar.gz |
Add three commands that can be done as simple shell scripts (one sed is in, anyway), and don't need to be implemented in C.
Diffstat (limited to 'wrappers/dos2unix')
-rwxr-xr-x | wrappers/dos2unix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/wrappers/dos2unix b/wrappers/dos2unix new file mode 100755 index 00000000..9eab6644 --- /dev/null +++ b/wrappers/dos2unix @@ -0,0 +1,5 @@ +#!/bin/sh +#HELP usage: dos2unix [FILE...]\n\nRemove DOS newlines + +[ $# -ne 0 ] && DASH_I=-i +sed $DASH_I -e 's/\r$//' "$@" |