Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-10-27 19:13:54 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2006-10-27 19:13:54 +0400
commitfefb279ace2da131cad369a3cc6983a1bc220a4a (patch)
tree374399ab7ac8a8bd422308482a548e0759490318 /include
parentcf70433173663a5d627d2a049328cd580f7e9220 (diff)
chmod: support -vcf if CONFIG_DESKTOP
Diffstat (limited to 'include')
-rw-r--r--include/usage.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/include/usage.h b/include/usage.h
index ab0c1efed..26122fd79 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -182,12 +182,17 @@
"-r--r--r-- 1 andersen root 0 Apr 12 18:25 /tmp/foo\n"
#define chmod_trivial_usage \
- "[-R] MODE[,MODE]... FILE..."
+ "[-R"USE_DESKTOP("cvf")"] MODE[,MODE]... FILE..."
#define chmod_full_usage \
"Each MODE is one or more of the letters ugoa, one of the\n" \
"symbols +-= and one or more of the letters rwxst.\n\n" \
"Options:\n" \
- "\t-R\tChanges files and directories recursively"
+ "\t-R\tChanges files and directories recursively" \
+ USE_DESKTOP( \
+ "\n\t-c\tList changed files" \
+ "\n\t-v\tList all files" \
+ "\n\t-f\tHide errors" \
+ )
#define chmod_example_usage \
"$ ls -l /tmp/foo\n" \
"-rw-rw-r-- 1 root root 0 Apr 12 18:25 /tmp/foo\n" \