diff options
author | Rob Landley <rob@landley.net> | 2012-06-12 01:14:50 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2012-06-12 01:14:50 -0500 |
commit | 918de13c86a5baa3bebe09ad12f092a0479d48f6 (patch) | |
tree | 13209071a32fa29da615180a746898a6a2ae033c /wrappers/tac | |
parent | 15a8d71674b437142fdc18408d22ec83d1dc245a (diff) | |
download | toybox-918de13c86a5baa3bebe09ad12f092a0479d48f6.tar.gz |
Delete wrappers converted to commands.
Diffstat (limited to 'wrappers/tac')
-rwxr-xr-x | wrappers/tac | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/wrappers/tac b/wrappers/tac deleted file mode 100755 index 6253b70f..00000000 --- a/wrappers/tac +++ /dev/null @@ -1,7 +0,0 @@ -#!/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 |