diff options
author | Denys Vlasenko | 2010-12-01 13:06:03 +0100 |
---|---|---|
committer | Denys Vlasenko | 2010-12-01 13:06:03 +0100 |
commit | 3f2477e8a89ddadd1dfdd9d990ac8c6fdb8ad4b3 (patch) | |
tree | f672972cbfd8cf87a1c386235fbb5522331d1a89 /coreutils/touch.c | |
parent | 631fd5ccd7372e2c09e953cc3c5d0176ee2bc6d2 (diff) | |
download | busybox-3f2477e8a89ddadd1dfdd9d990ac8c6fdb8ad4b3.zip busybox-3f2477e8a89ddadd1dfdd9d990ac8c6fdb8ad4b3.tar.gz |
touch: fix help text to not show options disabled in .config
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'coreutils/touch.c')
-rw-r--r-- | coreutils/touch.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/coreutils/touch.c b/coreutils/touch.c index afff36b..3521771 100644 --- a/coreutils/touch.c +++ b/coreutils/touch.c @@ -19,6 +19,35 @@ #include "libbb.h" +//config:config TOUCH +//config: bool "touch" +//config: default y +//config: help +//config: touch is used to create or change the access and/or +//config: modification timestamp of specified files. + +//applet:IF_TOUCH(APPLET_NOFORK(touch, touch, _BB_DIR_BIN, _BB_SUID_DROP, touch)) + +//kbuild:lib-$(CONFIG_TOUCH) += touch.o + +//usage:#define touch_trivial_usage +//usage: "[-c]" IF_DESKTOP(" [-d DATE] [-r FILE]") " FILE [FILE]..." +//usage:#define touch_full_usage "\n\n" +//usage: "Update the last-modified date on the given FILE[s]\n" +//usage: "\nOptions:" +//usage: "\n -c Don't create files" +//usage: IF_DESKTOP( +//usage: "\n -d DT Date/time to use" +//usage: "\n -r FILE Use FILE's date/time" +//usage: ) +//usage: +//usage:#define touch_example_usage +//usage: "$ ls -l /tmp/foo\n" +//usage: "/bin/ls: /tmp/foo: No such file or directory\n" +//usage: "$ touch /tmp/foo\n" +//usage: "$ ls -l /tmp/foo\n" +//usage: "-rw-rw-r-- 1 andersen andersen 0 Apr 15 01:11 /tmp/foo\n" + /* This is a NOFORK applet. Be very careful! */ /* coreutils implements: |