aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2012-01-22 20:33:15 -0600
committerRob Landley <rob@landley.net>2012-01-22 20:33:15 -0600
commit5b67c38f86318bfa8ff8e631aa9c5e0ea1a70c64 (patch)
tree0e81b3df4326f46f3144e46b0198d6bf4a1a1995
parent4c2484f46f969414b2aaf08300d80a81f18edcb1 (diff)
downloadtoybox-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.
-rwxr-xr-xwrappers/dos2unix5
-rwxr-xr-xwrappers/tac7
-rwxr-xr-xwrappers/unix2dos5
3 files changed, 17 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$//' "$@"
diff --git a/wrappers/tac b/wrappers/tac
new file mode 100755
index 00000000..6253b70f
--- /dev/null
+++ b/wrappers/tac
@@ -0,0 +1,7 @@
+#!/bin/sh
+# HELP usage: tac [FILE...]\n\nPrint input lines in reverse order
+
+for i in "$@"
+do
+ sed -e '1!G;h;$!d' "$i"
+done
diff --git a/wrappers/unix2dos b/wrappers/unix2dos
new file mode 100755
index 00000000..68c18593
--- /dev/null
+++ b/wrappers/unix2dos
@@ -0,0 +1,5 @@
+#!/bin/sh
+#HELP usage: unix2dos [FILE...]\n\nAdd DOS newlines
+
+[ $# -ne 0 ] && DASH_I=-i
+sed $DASH_I -e 's/$/\r/' "$@"