From: Simon Schubert Date: Sat, 14 Jul 2007 19:14:29 +0000 (+0000) Subject: Retire tac. tail -r does the same thing already. X-Git-Tag: v2.0.1~2578 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/7f813598e8a656fc0ea7d914cdf55481af5d2afc Retire tac. tail -r does the same thing already. Pointed-out-by: Emil Mikulic --- diff --git a/usr.bin/Makefile b/usr.bin/Makefile index e90501408f..24128a7c62 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -1,6 +1,6 @@ # From: @(#)Makefile 8.3 (Berkeley) 1/7/94 # $FreeBSD: src/usr.bin/Makefile,v 1.144.2.17 2003/01/04 17:17:07 obrien Exp $ -# $DragonFly: src/usr.bin/Makefile,v 1.36 2007/07/14 12:00:37 corecode Exp $ +# $DragonFly: src/usr.bin/Makefile,v 1.37 2007/07/14 19:14:29 corecode Exp $ # XXX MISSING: deroff diction graph learn plot # spell spline struct xsend @@ -168,7 +168,6 @@ SUBDIR= alias \ symorder \ systat \ tabs \ - tac \ tail \ talk \ tar \ diff --git a/usr.bin/tac/Makefile b/usr.bin/tac/Makefile deleted file mode 100644 index d299351514..0000000000 --- a/usr.bin/tac/Makefile +++ /dev/null @@ -1,5 +0,0 @@ -# $DragonFly: src/usr.bin/tac/Attic/Makefile,v 1.1 2007/07/14 11:56:19 corecode Exp $ - -SCRIPTS= tac.sed - -.include diff --git a/usr.bin/tac/tac.sed b/usr.bin/tac/tac.sed deleted file mode 100644 index a81d47158b..0000000000 --- a/usr.bin/tac/tac.sed +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/sed -nf - -# From the GNU sed manual, section 4.6. -# Copyright terms thereof: -# -# This document is released under the terms of the GNU Free Documentation -# License as published by the Free Software Foundation; either version 1.1, or -# (at your option) any later version. -# -# $DragonFly: src/usr.bin/tac/Attic/tac.sed,v 1.1 2007/07/14 11:56:19 corecode Exp $ - -# reverse all lines of input, i.e. first line became last, ... - -# from the second line, the buffer (which contains all previous lines) -# is *appended* to current line, so, the order will be reversed -1! G - -# on the last line we're done -- print everything -$ p - -# store everything on the buffer again -h