changeset 596:85ede8063734

Delete wrappers converted to commands.
author Rob Landley <rob@landley.net>
date Tue, 12 Jun 2012 01:14:50 -0500
parents d8566c3321f0
children b2d0e8e572ba
files wrappers/clear wrappers/tac
diffstat 2 files changed, 0 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/wrappers/clear	Mon Jun 11 23:57:16 2012 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-echo -ne '\e[2J\e[H'
--- a/wrappers/tac	Mon Jun 11 23:57:16 2012 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -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