summaryrefslogtreecommitdiff
path: root/tac
diff options
context:
space:
mode:
Diffstat (limited to 'tac')
-rwxr-xr-xtac12
1 files changed, 0 insertions, 12 deletions
diff --git a/tac b/tac
deleted file mode 100755
index d0f1504..0000000
--- a/tac
+++ /dev/null
@@ -1,12 +0,0 @@
-cat "$@" | awk "$(tail -n +3 $0)" # TODO: reverse order of arguments
-exit $?
-
-{
- lines[NR] = $0;
-}
-
-END {
- for (i = NR; i > 0; i--) {
- print lines[i]
- }
-}