aboutsummaryrefslogtreecommitdiff
path: root/wrappers/tac
diff options
context:
space:
mode:
Diffstat (limited to 'wrappers/tac')
-rwxr-xr-xwrappers/tac7
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