summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/basename.c1
-rw-r--r--src/chroot.c1
-rw-r--r--src/date.c1
-rw-r--r--src/dirname.c1
-rw-r--r--src/echo.c1
-rw-r--r--src/env.c1
-rw-r--r--src/expr.c1
-rw-r--r--src/factor.c1
-rwxr-xr-xsrc/groups.sh4
-rw-r--r--src/hostname.c1
-rw-r--r--src/id.c1
-rw-r--r--src/logname.c1
-rw-r--r--src/nice.c1
-rwxr-xr-xsrc/nohup.sh4
-rw-r--r--src/pathchk.c1
-rw-r--r--src/printenv.c1
-rw-r--r--src/printf.c1
-rw-r--r--src/pwd.c1
-rw-r--r--src/seq.c1
-rw-r--r--src/sleep.c1
-rw-r--r--src/stty.c1
-rw-r--r--src/su.c1
-rw-r--r--src/tee.c1
-rw-r--r--src/test.c1
-rw-r--r--src/tty.c1
-rw-r--r--src/uname.c1
-rw-r--r--src/who-users.c2
-rw-r--r--src/whoami.c1
-rw-r--r--src/yes.c1
29 files changed, 34 insertions, 2 deletions
diff --git a/src/basename.c b/src/basename.c
index fa018fee1..30670a009 100644
--- a/src/basename.c
+++ b/src/basename.c
@@ -59,6 +59,7 @@ If specified, also remove a trailing SUFFIX.\n\
--help display this help and exit\n\
--version output version information and exit\n\
"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/chroot.c b/src/chroot.c
index beceb63ec..477125e42 100644
--- a/src/chroot.c
+++ b/src/chroot.c
@@ -48,6 +48,7 @@ Run COMMAND with root directory set to NEWROOT.\n\
\n\
If no command is given, run ``${SHELL} -i'' (default: /bin/sh).\n\
"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/date.c b/src/date.c
index dea944215..1d4ac5add 100644
--- a/src/date.c
+++ b/src/date.c
@@ -421,6 +421,7 @@ the following modifiers between `%%' and a numeric directive.\n\
`-' (hyphen) do not pad the field\n\
`_' (underscore) pad the field with spaces\n\
"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/dirname.c b/src/dirname.c
index da7e5d706..199c525fb 100644
--- a/src/dirname.c
+++ b/src/dirname.c
@@ -50,6 +50,7 @@ output `.' (meaning the current directory).\n\
--help display this help and exit\n\
--version output version information and exit\n\
"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/echo.c b/src/echo.c
index 109d2a2f6..06d72064d 100644
--- a/src/echo.c
+++ b/src/echo.c
@@ -91,6 +91,7 @@ Without -E, the following sequences are recognized and interpolated:\n\
\\t horizontal tab\n\
\\v vertical tab\n\
"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/env.c b/src/env.c
index 11cbdd290..3d22f64ef 100644
--- a/src/env.c
+++ b/src/env.c
@@ -201,6 +201,7 @@ Set each NAME to VALUE in the environment and run COMMAND.\n\
\n\
A mere - implies -i. If no COMMAND, print the resulting environment.\n\
"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/expr.c b/src/expr.c
index a91c9528e..a82ea9c7c 100644
--- a/src/expr.c
+++ b/src/expr.c
@@ -144,6 +144,7 @@ Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n\
Pattern matches return the string matched between \\( and \\) or null; if\n\
\\( and \\) are not used, they return the number of characters matched or 0.\n\
"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/factor.c b/src/factor.c
index 7615ee029..89df40324 100644
--- a/src/factor.c
+++ b/src/factor.c
@@ -76,6 +76,7 @@ Print factors of each NUMBER; read standard input with no arguments.\n\
Print the prime factors of all specified integer NUMBERs. If no arguments\n\
are specified on the command line, they are read from standard input.\n\
"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/groups.sh b/src/groups.sh
index c3f9f96d3..24f6f32bc 100755
--- a/src/groups.sh
+++ b/src/groups.sh
@@ -27,7 +27,9 @@ usage="Usage: $0 [OPTION]... [USERNAME]...
--help display this help and exit
--version output version information and exit
-Same as id -Gn. If no USERNAME, use current process."
+Same as id -Gn. If no USERNAME, use current process.
+
+Report bugs to bug-gnu-utils@gnu.ai.mit.edu"
case $# in
1 )
diff --git a/src/hostname.c b/src/hostname.c
index f5797cc5e..590f79eb3 100644
--- a/src/hostname.c
+++ b/src/hostname.c
@@ -68,6 +68,7 @@ Print the hostname of the current system.\n\
--version output version information and exit\n\
")
, program_name, program_name);
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/id.c b/src/id.c
index d21ade9f2..e5d8e6213 100644
--- a/src/id.c
+++ b/src/id.c
@@ -381,6 +381,7 @@ Print information for USERNAME, or the current user.\n\
\n\
Without any OPTION, print some useful set of identified information.\n\
"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/logname.c b/src/logname.c
index e5996b6f0..4d10ac4ed 100644
--- a/src/logname.c
+++ b/src/logname.c
@@ -53,6 +53,7 @@ Print the name of the current user.\n\
--help display this help and exit\n\
--version output version information and exit\n\
"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/nice.c b/src/nice.c
index c9e271313..bd09a204a 100644
--- a/src/nice.c
+++ b/src/nice.c
@@ -199,6 +199,7 @@ by default. Range goes from -20 (highest priority) to 19 (lowest).\n\
-n, --adjustment=ADJUST same as -ADJUST\n\
--help display this help and exit\n\
--version output version information and exit\n"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/nohup.sh b/src/nohup.sh
index cb238b90b..e3ec6eac3 100755
--- a/src/nohup.sh
+++ b/src/nohup.sh
@@ -31,7 +31,9 @@ Try \`$0 --help' for more information."
usage_help="Run COMMAND, ignoring hangup signals.
--help display this help and exit
- --version output version information and exit"
+ --version output version information and exit
+
+Report bugs to bug-gnu-utils@gnu.ai.mit.edu"
if [ $# -eq 0 ]; then
echo >&2 "$usage"
diff --git a/src/pathchk.c b/src/pathchk.c
index b546185dd..5fd4ef219 100644
--- a/src/pathchk.c
+++ b/src/pathchk.c
@@ -367,6 +367,7 @@ Diagnose unportable constructs in NAME.\n\
--help display this help and exit\n\
--version output version information and exit\n\
"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/printenv.c b/src/printenv.c
index beed91e18..d4c81a519 100644
--- a/src/printenv.c
+++ b/src/printenv.c
@@ -67,6 +67,7 @@ If no environment VARIABLE specified, print them all.\n\
\n\
--help display this help and exit\n\
--version output version information and exit\n"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/printf.c b/src/printf.c
index 59b5801eb..4c3275008 100644
--- a/src/printf.c
+++ b/src/printf.c
@@ -120,6 +120,7 @@ FORMAT controls the output as in C printf. Interpreted sequences are:\n\
and all C format specifications ending with one of diouxXfeEgGcs, with\n\
ARGUMENTs converted to proper type first. Variable widths are handled.\n\
"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/pwd.c b/src/pwd.c
index 6b3c51a34..406cd65bb 100644
--- a/src/pwd.c
+++ b/src/pwd.c
@@ -45,6 +45,7 @@ Print the full filename of the current working directory.\n\
--help display this help and exit\n\
--version output version information and exit\n\
"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/seq.c b/src/seq.c
index a12ec8583..402550163 100644
--- a/src/seq.c
+++ b/src/seq.c
@@ -101,6 +101,7 @@ INCREMENT should be positive if FIRST is smaller than LAST, and negative\n\
otherwise. When given, the FORMAT argument must contain exactly one of\n\
the printf-style, floating point output formats %%e, %%f, or %%g.\n\
"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/sleep.c b/src/sleep.c
index c2194abe6..5e5c8e199 100644
--- a/src/sleep.c
+++ b/src/sleep.c
@@ -56,6 +56,7 @@ SUFFIX may be s to keep seconds, m for minutes, h for hours or d for days.\n\
\n\
--help display this help and exit\n\
--version output version information and exit\n"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/stty.c b/src/stty.c
index d771160f3..a6fb7f573 100644
--- a/src/stty.c
+++ b/src/stty.c
@@ -628,6 +628,7 @@ prints baud rate, line discipline, and deviations from stty sane. In\n\
settings, CHAR is taken literally, or coded as in ^c, 0x37, 0177 or\n\
127; special values ^- or undef used to disable special characters.\n\
"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/su.c b/src/su.c
index ae016cbac..bca680bee 100644
--- a/src/su.c
+++ b/src/su.c
@@ -430,6 +430,7 @@ Change the effective user id and group id to that of USER.\n\
\n\
A mere - implies -l. If USER not given, assume root.\n\
"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/tee.c b/src/tee.c
index 782648a02..44c49de55 100644
--- a/src/tee.c
+++ b/src/tee.c
@@ -72,6 +72,7 @@ Copy standard input to each FILE, and also to standard output.\n\
--help display this help and exit\n\
--version output version information and exit\n\
"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/test.c b/src/test.c
index bb0ae00b1..e5d6d41b6 100644
--- a/src/test.c
+++ b/src/test.c
@@ -1035,6 +1035,7 @@ EXPRESSION is true or false and sets exit status. It is one of:\n\
Beware that parentheses need to be escaped (e.g., by backslashes) for shells.\n\
INTEGER may also be -l STRING, which evaluates to the length of STRING.\n\
"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/tty.c b/src/tty.c
index a0b5207ec..193bb5e5c 100644
--- a/src/tty.c
+++ b/src/tty.c
@@ -125,6 +125,7 @@ Print the file name of the terminal connected to standard input.\n\
--help display this help and exit\n\
--version output version information and exit\n\
"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/uname.c b/src/uname.c
index 9a402d068..583031eed 100644
--- a/src/uname.c
+++ b/src/uname.c
@@ -192,6 +192,7 @@ Print certain system information. With no OPTION, same as -s.\n\
-v print the operating system version\n\
--help display this help and exit\n\
--version output version information and exit\n"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/who-users.c b/src/who-users.c
index fc6add1c1..ebf0c1920 100644
--- a/src/who-users.c
+++ b/src/who-users.c
@@ -641,6 +641,7 @@ usage (int status)
If FILE not given, uses /etc/utmp. /etc/wtmp as FILE is common.\n\
If ARG1 ARG2 given, -m presumed: `am i' or `mom likes' are usual.\n\
"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
@@ -662,6 +663,7 @@ If FILE not given, uses /etc/utmp. /etc/wtmp as FILE is common.\n\
\n\
--help display this help and exit\n\
--version output version information and exit\n"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/whoami.c b/src/whoami.c
index bc0d32eff..8a7159d5b 100644
--- a/src/whoami.c
+++ b/src/whoami.c
@@ -57,6 +57,7 @@ Same as id -un.\n\
\n\
--help display this help and exit\n\
--version output version information and exit\n"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}
diff --git a/src/yes.c b/src/yes.c
index 1fb87fd8f..0a1171c5a 100644
--- a/src/yes.c
+++ b/src/yes.c
@@ -42,6 +42,7 @@ Repeatedly output a line with all specified STRING(s), or `y'.\n\
\n\
--help display this help and exit\n\
--version output version information and exit\n"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu"));
}
exit (status);
}