diff options
author | Jim Meyering <jim@meyering.net> | 2001-11-23 20:10:25 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-11-23 20:10:25 +0000 |
commit | b78de3e724522e63bc82ef2f2214d329e69ea545 (patch) | |
tree | 9a0759d9c581522e4a3bd10fc46277db4465f2f6 /src/rmdir.c | |
parent | faf0e1a16ed1063dbe41fd03cfbcc591c5b9a3b0 (diff) | |
download | coreutils-b78de3e724522e63bc82ef2f2214d329e69ea545.tar.xz |
Split usage strings so that --help and --version
descriptions are alone in their own string.
Diffstat (limited to 'src/rmdir.c')
-rw-r--r-- | src/rmdir.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/rmdir.c b/src/rmdir.c index 085a11e68..8276816a6 100644 --- a/src/rmdir.c +++ b/src/rmdir.c @@ -148,12 +148,14 @@ Remove the DIRECTORY(ies), if they are empty.\n\ --ignore-fail-on-non-empty\n\ ignore each failure that is solely because a directory\n\ is non-empty\n\ +"), stdout); + fputs (_("\ -p, --parents remove DIRECTORY, then try to remove each directory\n\ component of that path name. E.g., `rmdir -p a/b/c' is\n\ similar to `rmdir a/b/c a/b a'.\n\ + -v, --verbose output a diagnostic for every directory processed\n\ "), stdout); fputs (_("\ - -v, --verbose output a diagnostic for every directory processed\n\ --help display this help and exit\n\ --version output version information and exit\n\ "), stdout); |