X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=coreutils%2Ftac.c;h=25e85f6f33c5cd45860045a0bf0247bcaa9977f8;hb=03ab212bff0fa7f51c0f75ee4be5db67184e41a2;hp=ab3e66ac20d539fa0243920fb69513a709025180;hpb=0ef64bdb40c54681e8dd5ab8df42ac88e4ab1d4a;p=oweals%2Fbusybox.git diff --git a/coreutils/tac.c b/coreutils/tac.c index ab3e66ac2..25e85f6f3 100644 --- a/coreutils/tac.c +++ b/coreutils/tac.c @@ -1,20 +1,31 @@ /* vi: set sw=4 ts=4: */ /* * tac implementation for busybox + * tac - concatenate and print files in reverse * * Copyright (C) 2003 Yang Xiaopeng * Copyright (C) 2007 Natanael Copa * Copyright (C) 2007 Tito Ragusa * * Licensed under GPLv2, see file LICENSE in this source tree. - * */ - -/* tac - concatenate and print files in reverse */ - /* Based on Yang Xiaopeng's (yxp at hanwang.com.cn) patch * http://www.uclibc.org/lists/busybox/2003-July/008813.html */ +//config:config TAC +//config: bool "tac (3.9 kb)" +//config: default y +//config: help +//config: tac is used to concatenate and print files in reverse. + +//applet:IF_TAC(APPLET_NOEXEC(tac, tac, BB_DIR_USR_BIN, BB_SUID_DROP, tac)) + +//kbuild:lib-$(CONFIG_TAC) += tac.o + +//usage:#define tac_trivial_usage +//usage: "[FILE]..." +//usage:#define tac_full_usage "\n\n" +//usage: "Concatenate FILEs and print them in reverse" #include "libbb.h"