summaryrefslogtreecommitdiff
path: root/coreutils/chmod.c
diff options
context:
space:
mode:
authorDenys Vlasenko2021-06-14 20:47:20 +0200
committerDenys Vlasenko2021-06-14 20:47:20 +0200
commite2b9215868a3d72691e5bc0f887354254606447b (patch)
treed800e563fcd78971be6cd8630fba1d61677975fb /coreutils/chmod.c
parent643b308029ac42f466fa17e4ff400e47003205d9 (diff)
downloadbusybox-e2b9215868a3d72691e5bc0f887354254606447b.zip
busybox-e2b9215868a3d72691e5bc0f887354254606447b.tar.gz
*: --help tweaks
function old new delta packed_usage 33589 33552 -37 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/chmod.c')
-rw-r--r--coreutils/chmod.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/coreutils/chmod.c b/coreutils/chmod.c
index d2988c4..e260ada 100644
--- a/coreutils/chmod.c
+++ b/coreutils/chmod.c
@@ -26,12 +26,13 @@
//usage:#define chmod_trivial_usage
//usage: "[-R"IF_DESKTOP("cvf")"] MODE[,MODE]... FILE..."
//usage:#define chmod_full_usage "\n\n"
-//usage: "Each MODE is one or more of the letters ugoa, one of the\n"
-//usage: "symbols +-= and one or more of the letters rwxst\n"
+//usage: "MODE is octal number (bit pattern sstrwxrwxrwx) or [ugoa]{+|-|=}[rwxXst]"
+//usage: "\n"
+//next 4 options are the same for chmod/chown/chgrp:
//usage: "\n -R Recurse"
//usage: IF_DESKTOP(
//usage: "\n -c List changed files"
-//usage: "\n -v List all files"
+//usage: "\n -v Verbose"
//usage: "\n -f Hide errors"
//usage: )
//usage: