diff options
Diffstat (limited to 'coreutils/chown.c')
-rw-r--r-- | coreutils/chown.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/coreutils/chown.c b/coreutils/chown.c index 170507147..528a2a05a 100644 --- a/coreutils/chown.c +++ b/coreutils/chown.c | |||
@@ -28,15 +28,19 @@ | |||
28 | //usage:#define chown_trivial_usage | 28 | //usage:#define chown_trivial_usage |
29 | //usage: "[-Rh"IF_DESKTOP("LHPcvf")"]... USER[:[GRP]] FILE..." | 29 | //usage: "[-Rh"IF_DESKTOP("LHPcvf")"]... USER[:[GRP]] FILE..." |
30 | //usage:#define chown_full_usage "\n\n" | 30 | //usage:#define chown_full_usage "\n\n" |
31 | //usage: "Change the owner and/or group of FILEs to USER and/or GRP\n" | 31 | //usage: "Change the owner and/or group of FILEs to USER and/or GRP" |
32 | //usage: "\n -R Recurse" | 32 | //usage: "\n" |
33 | //usage: "\n -h Affect symlinks instead of symlink targets" | 33 | //usage: "\n -h Affect symlinks instead of symlink targets" |
34 | //usage: IF_DESKTOP( | 34 | //usage: IF_DESKTOP( |
35 | //usage: "\n -L Traverse all symlinks to directories" | 35 | //usage: "\n -L Traverse all symlinks to directories" |
36 | //usage: "\n -H Traverse symlinks on command line only" | 36 | //usage: "\n -H Traverse symlinks on command line only" |
37 | //usage: "\n -P Don't traverse symlinks (default)" | 37 | //usage: "\n -P Don't traverse symlinks (default)" |
38 | //usage: ) | ||
39 | //next 4 options are the same for chmod/chown/chgrp: | ||
40 | //usage: "\n -R Recurse" | ||
41 | //usage: IF_DESKTOP( | ||
38 | //usage: "\n -c List changed files" | 42 | //usage: "\n -c List changed files" |
39 | //usage: "\n -v List all files" | 43 | //usage: "\n -v Verbose" |
40 | //usage: "\n -f Hide errors" | 44 | //usage: "\n -f Hide errors" |
41 | //usage: ) | 45 | //usage: ) |
42 | //usage: | 46 | //usage: |