summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-12-02 22:26:57 +0000
committerJim Meyering <jim@meyering.net>2001-12-02 22:26:57 +0000
commitf3ac2e783982387442dbd13cc30df0f41d52c779 (patch)
tree3e3f11f12b41d0e8547b8dc950a7831e5d478840
parent01f0361e79febac5df5ff9392b2c24688268adfd (diff)
downloadcoreutils-f3ac2e783982387442dbd13cc30df0f41d52c779.tar.xz
Use new macros, HELP_OPTION_DESCRIPTION and VERSION_OPTION_DESCRIPTION
instead of hard-coding --help and --version descriptions.
-rw-r--r--src/chgrp.c6
-rw-r--r--src/chmod.c6
-rw-r--r--src/chown.c6
-rw-r--r--src/cp.c6
-rw-r--r--src/dd.c6
-rw-r--r--src/df.c6
-rw-r--r--src/dircolors.c6
-rw-r--r--src/du.c6
-rw-r--r--src/install.c6
-rw-r--r--src/ln.c6
-rw-r--r--src/ls.c6
-rw-r--r--src/mkdir.c6
-rw-r--r--src/mkfifo.c6
-rw-r--r--src/mknod.c6
-rw-r--r--src/mv.c6
-rw-r--r--src/rm.c6
-rw-r--r--src/rmdir.c6
-rw-r--r--src/shred.c6
-rw-r--r--src/stat.c6
-rw-r--r--src/sync.c6
-rw-r--r--src/touch.c6
21 files changed, 42 insertions, 84 deletions
diff --git a/src/chgrp.c b/src/chgrp.c
index 46fe03414..a827f7548 100644
--- a/src/chgrp.c
+++ b/src/chgrp.c
@@ -147,10 +147,8 @@ Change the group membership of each FILE to GROUP.\n\
-R, --recursive operate on files and directories recursively\n\
-v, --verbose output a diagnostic for every file processed\n\
"), stdout);
- fputs (_("\
- --help display this help and exit\n\
- --version output version information and exit\n\
-"), stdout);
+ fputs (HELP_OPTION_DESCRIPTION, stdout);
+ fputs (VERSION_OPTION_DESCRIPTION, stdout);
puts (_("\nReport bugs to <bug-fileutils@gnu.org>."));
}
exit (status);
diff --git a/src/chmod.c b/src/chmod.c
index 953bb7959..82cdacea9 100644
--- a/src/chmod.c
+++ b/src/chmod.c
@@ -255,10 +255,8 @@ Change the mode of each FILE to MODE.\n\
--reference=RFILE use RFILE's mode instead of MODE values\n\
-R, --recursive change files and directories recursively\n\
"), stdout);
- fputs (_("\
- --help display this help and exit\n\
- --version output version information and exit\n\
-"), stdout);
+ fputs (HELP_OPTION_DESCRIPTION, stdout);
+ fputs (VERSION_OPTION_DESCRIPTION, stdout);
fputs (_("\
\n\
Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n\
diff --git a/src/chown.c b/src/chown.c
index ce81ace31..d7f3c982c 100644
--- a/src/chown.c
+++ b/src/chown.c
@@ -128,10 +128,8 @@ Change the owner and/or group of each FILE to OWNER and/or GROUP.\n\
-R, --recursive operate on files and directories recursively\n\
-v, --verbose output a diagnostic for every file processed\n\
"), stdout);
- fputs (_("\
- --help display this help and exit\n\
- --version output version information and exit\n\
-"), stdout);
+ fputs (HELP_OPTION_DESCRIPTION, stdout);
+ fputs (VERSION_OPTION_DESCRIPTION, stdout);
fputs (_("\
\n\
Owner is unchanged if missing. Group is unchanged if missing, but changed\n\
diff --git a/src/cp.c b/src/cp.c
index 0cab4f5d2..6a16ba139 100644
--- a/src/cp.c
+++ b/src/cp.c
@@ -225,10 +225,8 @@ Mandatory arguments to long options are mandatory for short options too.\n\
-v, --verbose explain what is being done\n\
-x, --one-file-system stay on this file system\n\
"), stdout);
- fputs (_("\
- --help display this help and exit\n\
- --version output version information and exit\n\
-"), stdout);
+ fputs (HELP_OPTION_DESCRIPTION, stdout);
+ fputs (VERSION_OPTION_DESCRIPTION, stdout);
fputs (_("\
\n\
By default, sparse SOURCE files are detected by a crude heuristic and the\n\
diff --git a/src/dd.c b/src/dd.c
index 56db4fc15..f138f0f75 100644
--- a/src/dd.c
+++ b/src/dd.c
@@ -305,10 +305,8 @@ Copy a file, converting and formatting according to the options.\n\
seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n\
skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n\
"), stdout);
- fputs (_("\
- --help display this help and exit\n\
- --version output version information and exit\n\
-"), stdout);
+ fputs (HELP_OPTION_DESCRIPTION, stdout);
+ fputs (VERSION_OPTION_DESCRIPTION, stdout);
fputs (_("\
\n\
BLOCKS and BYTES may be followed by the following multiplicative suffixes:\n\
diff --git a/src/df.c b/src/df.c
index cc126347d..3d84fa54b 100644
--- a/src/df.c
+++ b/src/df.c
@@ -781,10 +781,8 @@ Mandatory arguments to long options are mandatory for short options too.\n\
-x, --exclude-type=TYPE limit listing to filesystems not of type TYPE\n\
-v (ignored)\n\
"), stdout);
- fputs (_("\
- --help display this help and exit\n\
- --version output version information and exit\n\
-"), stdout);
+ fputs (HELP_OPTION_DESCRIPTION, stdout);
+ fputs (VERSION_OPTION_DESCRIPTION, stdout);
puts (_("\nReport bugs to <bug-fileutils@gnu.org>."));
}
exit (status);
diff --git a/src/dircolors.c b/src/dircolors.c
index 9b0745f6a..46ccc010e 100644
--- a/src/dircolors.c
+++ b/src/dircolors.c
@@ -110,10 +110,8 @@ Determine format of output:\n\
-c, --csh, --c-shell output C shell code to set LS_COLORS\n\
-p, --print-database output defaults\n\
"), stdout);
- fputs (_("\
- --help display this help and exit\n\
- --version output version information and exit\n\
-"), stdout);
+ fputs (HELP_OPTION_DESCRIPTION, stdout);
+ fputs (VERSION_OPTION_DESCRIPTION, stdout);
fputs (_("\
\n\
If FILE is specified, read it to determine which colors to use for which\n\
diff --git a/src/du.c b/src/du.c
index 09ace435d..4aaf0540b 100644
--- a/src/du.c
+++ b/src/du.c
@@ -222,10 +222,8 @@ Mandatory arguments to long options are mandatory for short options too.\n\
line argument; --max-depth=0 is the same as\n\
--summarize\n\
"), stdout);
- fputs (_("\
- --help display this help and exit\n\
- --version output version information and exit\n\
-"), stdout);
+ fputs (HELP_OPTION_DESCRIPTION, stdout);
+ fputs (VERSION_OPTION_DESCRIPTION, stdout);
puts (_("\nReport bugs to <bug-fileutils@gnu.org>."));
}
exit (status);
diff --git a/src/install.c b/src/install.c
index b0849fe9c..8efb2acb2 100644
--- a/src/install.c
+++ b/src/install.c
@@ -634,10 +634,8 @@ Mandatory arguments to long options are mandatory for short options too.\n\
-S, --suffix=SUFFIX override the usual backup suffix\n\
-v, --verbose print the name of each directory as it is created\n\
"), stdout);
- fputs (_("\
- --help display this help and exit\n\
- --version output version information and exit\n\
-"), stdout);
+ fputs (HELP_OPTION_DESCRIPTION, stdout);
+ fputs (VERSION_OPTION_DESCRIPTION, stdout);
fputs (_("\
\n\
The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n\
diff --git a/src/ln.c b/src/ln.c
index de088c6b3..c3d51e996 100644
--- a/src/ln.c
+++ b/src/ln.c
@@ -372,10 +372,8 @@ Mandatory arguments to long options are mandatory for short options too.\n\
the links\n\
-v, --verbose print name of each file before linking\n\
"), stdout);
- fputs (_("\
- --help display this help and exit\n\
- --version output version information and exit\n\
-"), stdout);
+ fputs (HELP_OPTION_DESCRIPTION, stdout);
+ fputs (VERSION_OPTION_DESCRIPTION, stdout);
fputs (_("\
\n\
The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n\
diff --git a/src/ls.c b/src/ls.c
index faea02e34..2416e1e2f 100644
--- a/src/ls.c
+++ b/src/ls.c
@@ -3667,10 +3667,8 @@ Mandatory arguments to long options are mandatory for short options too.\n\
-X sort alphabetically by entry extension\n\
-1 list one file per line\n\
"), stdout);
- fputs (_("\
- --help display this help and exit\n\
- --version output version information and exit\n\
-"), stdout);
+ fputs (HELP_OPTION_DESCRIPTION, stdout);
+ fputs (VERSION_OPTION_DESCRIPTION, stdout);
fputs (_("\
\n\
By default, color is not used to distinguish types of files. That is\n\
diff --git a/src/mkdir.c b/src/mkdir.c
index b3bfb5cda..2b00c2f6d 100644
--- a/src/mkdir.c
+++ b/src/mkdir.c
@@ -71,10 +71,8 @@ Mandatory arguments to long options are mandatory for short options too.\n\
-p, --parents no error if existing, make parent directories as needed\n\
-v, --verbose print a message for each created directory\n\
"), stdout);
- fputs (_("\
- --help display this help and exit\n\
- --version output version information and exit\n\
-"), stdout);
+ fputs (HELP_OPTION_DESCRIPTION, stdout);
+ fputs (VERSION_OPTION_DESCRIPTION, stdout);
puts (_("\nReport bugs to <bug-fileutils@gnu.org>."));
}
exit (status);
diff --git a/src/mkfifo.c b/src/mkfifo.c
index 0eae76943..997203012 100644
--- a/src/mkfifo.c
+++ b/src/mkfifo.c
@@ -63,10 +63,8 @@ Mandatory arguments to long options are mandatory for short options too.\n\
fputs (_("\
-m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n\
"), stdout);
- fputs (_("\
- --help display this help and exit\n\
- --version output version information and exit\n\
-"), stdout);
+ fputs (HELP_OPTION_DESCRIPTION, stdout);
+ fputs (VERSION_OPTION_DESCRIPTION, stdout);
puts (_("\nReport bugs to <bug-fileutils@gnu.org>."));
}
exit (status);
diff --git a/src/mknod.c b/src/mknod.c
index 7e34bd4e6..810d63ef3 100644
--- a/src/mknod.c
+++ b/src/mknod.c
@@ -73,10 +73,8 @@ Mandatory arguments to long options are mandatory for short options too.\n\
fputs (_("\
-m, --mode=MODE set permission mode (as in chmod), not a=rw - umask\n\
"), stdout);
- fputs (_("\
- --help display this help and exit\n\
- --version output version information and exit\n\
-"), stdout);
+ fputs (HELP_OPTION_DESCRIPTION, stdout);
+ fputs (VERSION_OPTION_DESCRIPTION, stdout);
fputs (_("\
\n\
MAJOR MINOR are forbidden for TYPE p, mandatory otherwise. TYPE may be:\n\
diff --git a/src/mv.c b/src/mv.c
index 30ac2ccf3..a500d9f1c 100644
--- a/src/mv.c
+++ b/src/mv.c
@@ -362,12 +362,10 @@ Mandatory arguments to long options are mandatory for short options too.\n\
destination file is missing\n\
-v, --verbose explain what is being done\n\
"), stdout);
+ fputs (HELP_OPTION_DESCRIPTION, stdout);
+ fputs (VERSION_OPTION_DESCRIPTION, stdout);
fputs (_("\
- --help display this help and exit\n\
- --version output version information and exit\n\
\n\
-"), stdout);
- fputs (_("\
The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n\
The version control method may be selected via the --backup option or through\n\
the VERSION_CONTROL environment variable. Here are the values:\n\
diff --git a/src/rm.c b/src/rm.c
index a3f214b66..9c105efe2 100644
--- a/src/rm.c
+++ b/src/rm.c
@@ -94,10 +94,8 @@ Remove (unlink) the FILE(s).\n\
-r, -R, --recursive remove the contents of directories recursively\n\
-v, --verbose explain what is being done\n\
"), stdout);
- fputs (_("\
- --help display this help and exit\n\
- --version output version information and exit\n\
-"), stdout);
+ fputs (HELP_OPTION_DESCRIPTION, stdout);
+ fputs (VERSION_OPTION_DESCRIPTION, stdout);
printf (_("\
\n\
To remove a file whose name starts with a `-', for example `-foo',\n\
diff --git a/src/rmdir.c b/src/rmdir.c
index 8276816a6..cebeac316 100644
--- a/src/rmdir.c
+++ b/src/rmdir.c
@@ -155,10 +155,8 @@ Remove the DIRECTORY(ies), if they are empty.\n\
similar to `rmdir a/b/c a/b a'.\n\
-v, --verbose output a diagnostic for every directory processed\n\
"), stdout);
- fputs (_("\
- --help display this help and exit\n\
- --version output version information and exit\n\
-"), stdout);
+ fputs (HELP_OPTION_DESCRIPTION, stdout);
+ fputs (VERSION_OPTION_DESCRIPTION, stdout);
puts (_("\nReport bugs to <bug-fileutils@gnu.org>."));
}
exit (status);
diff --git a/src/shred.c b/src/shred.c
index 7bb3edf89..91ad58ea4 100644
--- a/src/shred.c
+++ b/src/shred.c
@@ -483,10 +483,8 @@ Mandatory arguments to long options are mandatory for short options too.\n\
-z, --zero add a final overwrite with zeros to hide shredding\n\
- shred standard output\n\
"), stdout);
- fputs (_("\
- --help display this help and exit\n\
- --version output version information and exit\n\
-"), stdout);
+ fputs (HELP_OPTION_DESCRIPTION, stdout);
+ fputs (VERSION_OPTION_DESCRIPTION, stdout);
fputs (_("\
\n\
Delete FILE(s) if --remove (-u) is specified. The default is not to remove\n\
diff --git a/src/stat.c b/src/stat.c
index e65242c14..cd63fe203 100644
--- a/src/stat.c
+++ b/src/stat.c
@@ -304,10 +304,8 @@ Display file or filesystem status.\n\
-f, --filesystem display filesystem status instead of file status\n\
-t, --terse print the information in terse form\n\
"), stdout);
- fputs (_("\
- --help display this help and exit\n\
- --version output version information and exit\n\
-"), stdout);
+ fputs (HELP_OPTION_DESCRIPTION, stdout);
+ fputs (VERSION_OPTION_DESCRIPTION, stdout);
puts (_("\nReport bugs to <bug-fileutils@gnu.org>."));
}
exit (status);
diff --git a/src/sync.c b/src/sync.c
index 5c0ea52ec..40bb5715b 100644
--- a/src/sync.c
+++ b/src/sync.c
@@ -46,10 +46,8 @@ usage (int status)
Force changed blocks to disk, update the super block.\n\
\n\
"), stdout);
- fputs (_("\
- --help display this help and exit\n\
- --version output version information and exit\n\
-"), stdout);
+ fputs (HELP_OPTION_DESCRIPTION, stdout);
+ fputs (VERSION_OPTION_DESCRIPTION, stdout);
puts (_("\nReport bugs to <bug-fileutils@gnu.org>."));
}
exit (status);
diff --git a/src/touch.c b/src/touch.c
index 3590cb51b..e3ec8ae47 100644
--- a/src/touch.c
+++ b/src/touch.c
@@ -248,10 +248,8 @@ Mandatory arguments to long options are mandatory for short options too.\n\
--time=WORD set time given by WORD: access atime use (same as -a)\n\
modify mtime (same as -m)\n\
"), stdout);
- fputs (_("\
- --help display this help and exit\n\
- --version output version information and exit\n\
-"), stdout);
+ fputs (HELP_OPTION_DESCRIPTION, stdout);
+ fputs (VERSION_OPTION_DESCRIPTION, stdout);
fputs (_("\
\n\
Note that the three time-date formats recognized for the -d and -t options\n\