diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-27 15:13:54 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-27 15:13:54 +0000 |
commit | 65da216134f455f6b8a5e0658d8ddba9ea16a117 (patch) | |
tree | 374399ab7ac8a8bd422308482a548e0759490318 /include/usage.h | |
parent | 5482c2378b5262c6667af7683831f26e65dbd0b7 (diff) | |
download | busybox-w32-65da216134f455f6b8a5e0658d8ddba9ea16a117.tar.gz busybox-w32-65da216134f455f6b8a5e0658d8ddba9ea16a117.tar.bz2 busybox-w32-65da216134f455f6b8a5e0658d8ddba9ea16a117.zip |
chmod: support -vcf if CONFIG_DESKTOP
git-svn-id: svn://busybox.net/trunk/busybox@16458 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-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" \ |