diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2021-06-14 20:47:20 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-06-14 20:47:20 +0200 |
commit | e2b9215868a3d72691e5bc0f887354254606447b (patch) | |
tree | d800e563fcd78971be6cd8630fba1d61677975fb /coreutils/chmod.c | |
parent | 643b308029ac42f466fa17e4ff400e47003205d9 (diff) | |
download | busybox-w32-e2b9215868a3d72691e5bc0f887354254606447b.tar.gz busybox-w32-e2b9215868a3d72691e5bc0f887354254606447b.tar.bz2 busybox-w32-e2b9215868a3d72691e5bc0f887354254606447b.zip |
*: --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.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/coreutils/chmod.c b/coreutils/chmod.c index d2988c490..e260adab2 100644 --- a/coreutils/chmod.c +++ b/coreutils/chmod.c | |||
@@ -26,12 +26,13 @@ | |||
26 | //usage:#define chmod_trivial_usage | 26 | //usage:#define chmod_trivial_usage |
27 | //usage: "[-R"IF_DESKTOP("cvf")"] MODE[,MODE]... FILE..." | 27 | //usage: "[-R"IF_DESKTOP("cvf")"] MODE[,MODE]... FILE..." |
28 | //usage:#define chmod_full_usage "\n\n" | 28 | //usage:#define chmod_full_usage "\n\n" |
29 | //usage: "Each MODE is one or more of the letters ugoa, one of the\n" | 29 | //usage: "MODE is octal number (bit pattern sstrwxrwxrwx) or [ugoa]{+|-|=}[rwxXst]" |
30 | //usage: "symbols +-= and one or more of the letters rwxst\n" | 30 | //usage: "\n" |
31 | //next 4 options are the same for chmod/chown/chgrp: | ||
31 | //usage: "\n -R Recurse" | 32 | //usage: "\n -R Recurse" |
32 | //usage: IF_DESKTOP( | 33 | //usage: IF_DESKTOP( |
33 | //usage: "\n -c List changed files" | 34 | //usage: "\n -c List changed files" |
34 | //usage: "\n -v List all files" | 35 | //usage: "\n -v Verbose" |
35 | //usage: "\n -f Hide errors" | 36 | //usage: "\n -f Hide errors" |
36 | //usage: ) | 37 | //usage: ) |
37 | //usage: | 38 | //usage: |