diff options
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: |