aboutsummaryrefslogtreecommitdiff
path: root/wrappers
diff options
context:
space:
mode:
Diffstat (limited to 'wrappers')
-rwxr-xr-xwrappers/clear3
-rwxr-xr-xwrappers/tac7
2 files changed, 0 insertions, 10 deletions
diff --git a/wrappers/clear b/wrappers/clear
deleted file mode 100755
index b4f4b257..00000000
--- a/wrappers/clear
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-echo -ne '\e[2J\e[H'
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