diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-27 15:13:54 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-27 15:13:54 +0000 |
commit | fefb279ace2da131cad369a3cc6983a1bc220a4a (patch) | |
tree | 374399ab7ac8a8bd422308482a548e0759490318 /include | |
parent | cf70433173663a5d627d2a049328cd580f7e9220 (diff) | |
download | busybox-w32-fefb279ace2da131cad369a3cc6983a1bc220a4a.tar.gz busybox-w32-fefb279ace2da131cad369a3cc6983a1bc220a4a.tar.bz2 busybox-w32-fefb279ace2da131cad369a3cc6983a1bc220a4a.zip |
chmod: support -vcf if CONFIG_DESKTOP
Diffstat (limited to 'include')
-rw-r--r-- | include/usage.h | 9 |
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 @@ | |||
182 | "-r--r--r-- 1 andersen root 0 Apr 12 18:25 /tmp/foo\n" | 182 | "-r--r--r-- 1 andersen root 0 Apr 12 18:25 /tmp/foo\n" |
183 | 183 | ||
184 | #define chmod_trivial_usage \ | 184 | #define chmod_trivial_usage \ |
185 | "[-R] MODE[,MODE]... FILE..." | 185 | "[-R"USE_DESKTOP("cvf")"] MODE[,MODE]... FILE..." |
186 | #define chmod_full_usage \ | 186 | #define chmod_full_usage \ |
187 | "Each MODE is one or more of the letters ugoa, one of the\n" \ | 187 | "Each MODE is one or more of the letters ugoa, one of the\n" \ |
188 | "symbols +-= and one or more of the letters rwxst.\n\n" \ | 188 | "symbols +-= and one or more of the letters rwxst.\n\n" \ |
189 | "Options:\n" \ | 189 | "Options:\n" \ |
190 | "\t-R\tChanges files and directories recursively" | 190 | "\t-R\tChanges files and directories recursively" \ |
191 | USE_DESKTOP( \ | ||
192 | "\n\t-c\tList changed files" \ | ||
193 | "\n\t-v\tList all files" \ | ||
194 | "\n\t-f\tHide errors" \ | ||
195 | ) | ||
191 | #define chmod_example_usage \ | 196 | #define chmod_example_usage \ |
192 | "$ ls -l /tmp/foo\n" \ | 197 | "$ ls -l /tmp/foo\n" \ |
193 | "-rw-rw-r-- 1 root root 0 Apr 12 18:25 /tmp/foo\n" \ | 198 | "-rw-rw-r-- 1 root root 0 Apr 12 18:25 /tmp/foo\n" \ |