diff options
-rwxr-xr-x | wrappers/clear | 3 | ||||
-rwxr-xr-x | wrappers/tac | 7 |
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 |