diff options
| author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-01-06 06:27:17 +0000 |
|---|---|---|
| committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-01-06 06:27:17 +0000 |
| commit | bcd5fc12ec4d31f7633460cb66c2e8a5436ace18 (patch) | |
| tree | 6664a87764ecf647c41520078d1328dca2dc7e75 /coreutils | |
| parent | 56ea65ca5f30778f05c8882b04e3a94c869bbca4 (diff) | |
| download | busybox-w32-bcd5fc12ec4d31f7633460cb66c2e8a5436ace18.tar.gz busybox-w32-bcd5fc12ec4d31f7633460cb66c2e8a5436ace18.tar.bz2 busybox-w32-bcd5fc12ec4d31f7633460cb66c2e8a5436ace18.zip | |
tac: new applet. ~240 bytes.
Copyright (C) 2003 Yang Xiaopeng <yxp at hanwang.com.cn>
Copyright (C) 2007 Natanael Copa <natanael.copa@gmail.com>
Copyright (C) 2007 Tito Ragusa <farmatito@tiscali.it>
Diffstat (limited to 'coreutils')
| -rw-r--r-- | coreutils/Config.in | 6 | ||||
| -rw-r--r-- | coreutils/Kbuild | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/coreutils/Config.in b/coreutils/Config.in index d3cbc4213..3b3f7b333 100644 --- a/coreutils/Config.in +++ b/coreutils/Config.in | |||
| @@ -579,6 +579,12 @@ config SYNC | |||
| 579 | help | 579 | help |
| 580 | sync is used to flush filesystem buffers. | 580 | sync is used to flush filesystem buffers. |
| 581 | 581 | ||
| 582 | config TAC | ||
| 583 | bool "tac" | ||
| 584 | default n | ||
| 585 | help | ||
| 586 | tac is used to concatenate and print files in reverse. | ||
| 587 | |||
| 582 | config TAIL | 588 | config TAIL |
| 583 | bool "tail" | 589 | bool "tail" |
| 584 | default n | 590 | default n |
diff --git a/coreutils/Kbuild b/coreutils/Kbuild index ce21b3a89..8ada8b056 100644 --- a/coreutils/Kbuild +++ b/coreutils/Kbuild | |||
| @@ -66,6 +66,7 @@ lib-$(CONFIG_STAT) += stat.o | |||
| 66 | lib-$(CONFIG_STTY) += stty.o | 66 | lib-$(CONFIG_STTY) += stty.o |
| 67 | lib-$(CONFIG_SUM) += sum.o | 67 | lib-$(CONFIG_SUM) += sum.o |
| 68 | lib-$(CONFIG_SYNC) += sync.o | 68 | lib-$(CONFIG_SYNC) += sync.o |
| 69 | lib-$(CONFIG_TAC) += tac.o | ||
| 69 | lib-$(CONFIG_TAIL) += tail.o | 70 | lib-$(CONFIG_TAIL) += tail.o |
| 70 | lib-$(CONFIG_TEE) += tee.o | 71 | lib-$(CONFIG_TEE) += tee.o |
| 71 | lib-$(CONFIG_TEST) += test.o | 72 | lib-$(CONFIG_TEST) += test.o |
