diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-27 23:28:38 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-27 23:28:38 +0000 |
commit | e80e2a3660bf09cc549cb2dfd2bdeb77ccde1231 (patch) | |
tree | 94303277042044e84dbdc28e2c2457e5b27009d4 /include | |
parent | 3b8fc1c582884d356df04b4984db3963bc129c48 (diff) | |
download | busybox-w32-e80e2a3660bf09cc549cb2dfd2bdeb77ccde1231.tar.gz busybox-w32-e80e2a3660bf09cc549cb2dfd2bdeb77ccde1231.tar.bz2 busybox-w32-e80e2a3660bf09cc549cb2dfd2bdeb77ccde1231.zip |
chgrp: just call chown! :)
Diffstat (limited to 'include')
-rw-r--r-- | include/usage.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/include/usage.h b/include/usage.h index 8d61c2907..46bb9eca4 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -169,11 +169,17 @@ | |||
169 | "\t-v\tset the file's version/generation number" | 169 | "\t-v\tset the file's version/generation number" |
170 | 170 | ||
171 | #define chgrp_trivial_usage \ | 171 | #define chgrp_trivial_usage \ |
172 | "[OPTION]... GROUP FILE..." | 172 | "[-Rh"USE_DESKTOP("cvf")"]... GROUP FILE..." |
173 | #define chgrp_full_usage \ | 173 | #define chgrp_full_usage \ |
174 | "Change the group membership of each FILE to GROUP.\n" \ | 174 | "Change the group membership of each FILE to GROUP.\n" \ |
175 | "\nOptions:\n" \ | 175 | "\nOptions:\n" \ |
176 | "\t-R\tChanges files and directories recursively" | 176 | "\t-R\tChanges files and directories recursively\n" \ |
177 | "\t-h\tDo not dereference symbolic links" \ | ||
178 | USE_DESKTOP( \ | ||
179 | "\n\t-c\tList changed files" \ | ||
180 | "\n\t-v\tList all files" \ | ||
181 | "\n\t-f\tHide errors" \ | ||
182 | ) | ||
177 | #define chgrp_example_usage \ | 183 | #define chgrp_example_usage \ |
178 | "$ ls -l /tmp/foo\n" \ | 184 | "$ ls -l /tmp/foo\n" \ |
179 | "-r--r--r-- 1 andersen andersen 0 Apr 12 18:25 /tmp/foo\n" \ | 185 | "-r--r--r-- 1 andersen andersen 0 Apr 12 18:25 /tmp/foo\n" \ |