diff options
author | Pádraig Brady <P@draigBrady.com> | 2011-12-26 19:20:04 +0000 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2011-12-26 22:19:46 +0000 |
commit | 44e20cda07046da961ff1e42b240be74ad200488 (patch) | |
tree | dd4b8d98a82141670d0a5117bc0085631e91c817 /src/chgrp.c | |
parent | b1230020dc5c5acc9f9ab16c3c397c0aecb5977b (diff) | |
download | coreutils-44e20cda07046da961ff1e42b240be74ad200488.tar.xz |
doc: homologize ch{con,grp,mod,own} option descriptions
* src/chgrp.c (usage): Group associated options together,
to aid users. Also minimize the differences between
individual messages across these four commands, to
aid translators.
* src/chmod.c: Likewise.
* src/chown.c: Likewise.
* src/chcon.c (usage): Likewise. Document the
--dereference option.
Suggested by Paul Eggert and Jari Aalto
Diffstat (limited to 'src/chgrp.c')
-rw-r--r-- | src/chgrp.c | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/src/chgrp.c b/src/chgrp.c index 1b4847d8b..63dcc63e4 100644 --- a/src/chgrp.c +++ b/src/chgrp.c @@ -115,13 +115,19 @@ Usage: %s [OPTION]... GROUP FILE...\n\ Change the group of each FILE to GROUP.\n\ With --reference, change the group of each FILE to that of RFILE.\n\ \n\ +"), stdout); + fputs (_("\ -c, --changes like verbose but report only when a change is made\n\ + -f, --silent, --quiet suppress most error messages\n\ + -v, --verbose output a diagnostic for every file processed\n\ +"), stdout); + fputs (_("\ --dereference affect the referent of each symbolic link (this is\n\ the default), rather than the symbolic link itself\n\ + -h, --no-dereference affect symbolic links instead of any referenced file\n\ "), stdout); fputs (_("\ - -h, --no-dereference affect each symbolic link instead of any referenced\n\ - file (useful only on systems that can change the\n\ + (useful only on systems that can change the\n\ ownership of a symlink)\n\ "), stdout); fputs (_("\ @@ -129,14 +135,14 @@ With --reference, change the group of each FILE to that of RFILE.\n\ --preserve-root fail to operate recursively on `/'\n\ "), stdout); fputs (_("\ - -f, --silent, --quiet suppress most error messages\n\ --reference=RFILE use RFILE's group rather than specifying a\n\ GROUP value\n\ +"), stdout); + fputs (_("\ -R, --recursive operate on files and directories recursively\n\ - -v, --verbose output a diagnostic for every file processed\n\ -\n\ "), stdout); fputs (_("\ +\n\ The following options modify how a hierarchy is traversed when the -R\n\ option is also specified. If more than one is specified, only the final\n\ one takes effect.\n\ |