aboutsummaryrefslogtreecommitdiff
path: root/include/usage.h
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-27 16:07:20 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-27 16:07:20 +0000
commitc490a4da04515aed164f7974eae9ec925e8fc262 (patch)
treee62b6e2b809db8135d640e3b8222cfd4d52d9098 /include/usage.h
parent65da216134f455f6b8a5e0658d8ddba9ea16a117 (diff)
downloadbusybox-w32-c490a4da04515aed164f7974eae9ec925e8fc262.tar.gz
busybox-w32-c490a4da04515aed164f7974eae9ec925e8fc262.tar.bz2
busybox-w32-c490a4da04515aed164f7974eae9ec925e8fc262.zip
chown: add -vcf support if CONFIG_DESKTOP
chmod: stop following symlinks git-svn-id: svn://busybox.net/trunk/busybox@16459 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-rw-r--r--include/usage.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/include/usage.h b/include/usage.h
index 26122fd79..8d61c2907 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -204,12 +204,17 @@
204 "-r--r--r-- 1 root root 0 Apr 12 18:25 /tmp/foo\n" 204 "-r--r--r-- 1 root root 0 Apr 12 18:25 /tmp/foo\n"
205 205
206#define chown_trivial_usage \ 206#define chown_trivial_usage \
207 "[ -Rh ]... OWNER[<.|:>[GROUP]] FILE..." 207 "[-Rh"USE_DESKTOP("cvf")"]... OWNER[<.|:>[GROUP]] FILE..."
208#define chown_full_usage \ 208#define chown_full_usage \
209 "Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" \ 209 "Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" \
210 "\nOptions:\n" \ 210 "\nOptions:\n" \
211 "\t-R\tChanges files and directories recursively\n" \ 211 "\t-R\tChanges files and directories recursively\n" \
212 "\t-h\tDo not dereference symbolic links" 212 "\t-h\tDo not dereference symbolic links" \
213 USE_DESKTOP( \
214 "\n\t-c\tList changed files" \
215 "\n\t-v\tList all files" \
216 "\n\t-f\tHide errors" \
217 )
213#define chown_example_usage \ 218#define chown_example_usage \
214 "$ ls -l /tmp/foo\n" \ 219 "$ ls -l /tmp/foo\n" \
215 "-r--r--r-- 1 andersen andersen 0 Apr 12 18:25 /tmp/foo\n" \ 220 "-r--r--r-- 1 andersen andersen 0 Apr 12 18:25 /tmp/foo\n" \