summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/chgrp.c4
-rw-r--r--src/chmod.c4
-rw-r--r--src/chown.c4
-rw-r--r--src/dd.c4
-rw-r--r--src/df.c4
-rw-r--r--src/dircolors.c1
-rw-r--r--src/du.c4
-rw-r--r--src/install.c4
-rw-r--r--src/ln.c4
-rw-r--r--src/ls.c4
-rw-r--r--src/mkdir.c4
-rw-r--r--src/mkfifo.c4
-rw-r--r--src/mknod.c4
-rw-r--r--src/mv.c4
-rw-r--r--src/rm.c4
-rw-r--r--src/rmdir.c4
-rw-r--r--src/sync.c1
-rw-r--r--src/touch.c4
18 files changed, 49 insertions, 17 deletions
diff --git a/src/chgrp.c b/src/chgrp.c
index ec1d2a674..5bbb1e628 100644
--- a/src/chgrp.c
+++ b/src/chgrp.c
@@ -285,7 +285,9 @@ Change the group membership of each FILE to GROUP.\n\
-v, --verbose output a diagnostic for every file processed\n\
-R, --recursive change files and directories recursively\n\
--help display this help and exit\n\
- --version output version information and exit\n"));
+ --version output version information and exit\n\
+"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu\n"));
}
exit (status);
}
diff --git a/src/chmod.c b/src/chmod.c
index 518e7fa1a..51e77d3ec 100644
--- a/src/chmod.c
+++ b/src/chmod.c
@@ -224,7 +224,9 @@ Usage: %s [OPTION]... MODE[,MODE]... FILE...\n\
--version output version information and exit\n\
\n\
Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n\
-one or more of the letters rwxXstugo.\n"));
+one or more of the letters rwxXstugo.\n\
+"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu\n"));
}
exit (status);
}
diff --git a/src/chown.c b/src/chown.c
index 905fa67d3..84ea3d6cd 100644
--- a/src/chown.c
+++ b/src/chown.c
@@ -249,7 +249,9 @@ Change the owner and/or group of each FILE to OWNER and/or GROUP.\n\
--version output version information and exit\n\
\n\
Owner is unchanged if missing. Group is unchanged if missing, but changed\n\
-to login group if implied by a period. A colon may replace the period.\n"));
+to login group if implied by a period. A colon may replace the period.\n\
+"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu\n"));
}
exit (status);
}
diff --git a/src/dd.c b/src/dd.c
index d8a68751b..34de427a8 100644
--- a/src/dd.c
+++ b/src/dd.c
@@ -1116,7 +1116,9 @@ by w for x2, by b for x512, by k for x1024. Each KEYWORD may be:\n\
ucase change lower case to upper case\n\
swab swap every pair of input bytes\n\
noerror continue after read errors\n\
- sync pad every input block with NULs to ibs-size\n"));
+ sync pad every input block with NULs to ibs-size\n\
+"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu\n"));
}
exit (status);
}
diff --git a/src/df.c b/src/df.c
index 8f0d1fbe7..3357afc62 100644
--- a/src/df.c
+++ b/src/df.c
@@ -477,7 +477,9 @@ or all filesystems by default.\n\
-P, --portability use the POSIX output format\n\
-T, --print-type print filesystem type\n\
--help display this help and exit\n\
- --version output version information and exit\n"));
+ --version output version information and exit\n\
+"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu\n"));
}
exit (status);
}
diff --git a/src/dircolors.c b/src/dircolors.c
index 4314c9bc3..b2645d77c 100644
--- a/src/dircolors.c
+++ b/src/dircolors.c
@@ -115,6 +115,7 @@ Determine format of 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\n"));
}
exit (status == 0 ? EXIT_SUCCESS : EXIT_FAILURE);
diff --git a/src/du.c b/src/du.c
index 09e022752..ededd6493 100644
--- a/src/du.c
+++ b/src/du.c
@@ -233,7 +233,9 @@ Summarize disk usage of each FILE, recursively for directories.\n\
-s, --summarize display only a total for each argument\n\
-x, --one-file-system skip directories on different filesystems\n\
--help display this help and exit\n\
- --version output version information and exit\n"));
+ --version output version information and exit\n\
+"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu\n"));
}
exit (status);
}
diff --git a/src/install.c b/src/install.c
index 0e2babab3..54025fbd9 100644
--- a/src/install.c
+++ b/src/install.c
@@ -617,7 +617,9 @@ version control may be set with VERSION_CONTROL, values are:\n\
\n\
t, numbered make numbered backups\n\
nil, existing numbered if numbered backups exist, simple otherwise\n\
- never, simple always make simple backups\n"));
+ never, simple always make simple backups\n\
+"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu\n"));
}
exit (status);
}
diff --git a/src/ln.c b/src/ln.c
index 8e76abdcc..ee7eb7f8c 100644
--- a/src/ln.c
+++ b/src/ln.c
@@ -342,7 +342,9 @@ version control may be set with VERSION_CONTROL, values are:\n\
\n\
t, numbered make numbered backups\n\
nil, existing numbered if numbered backups exist, simple otherwise\n\
- never, simple always make simple backups\n"));
+ never, simple always make simple backups\n\
+"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu\n"));
}
exit (status);
}
diff --git a/src/ls.c b/src/ls.c
index 517ae329a..26ddec1aa 100644
--- a/src/ls.c
+++ b/src/ls.c
@@ -2746,8 +2746,8 @@ equivalent to using --color=none. Using the --color option without the\n\
optional WHEN argument is equivalent to using --color=always. With\n\
--color=auto, color codes are output only if standard output is connected\n\
to a terminal (tty).\n\
-"
- ));
+"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu\n"));
}
exit (status);
}
diff --git a/src/mkdir.c b/src/mkdir.c
index d0e34406d..d7e1f0207 100644
--- a/src/mkdir.c
+++ b/src/mkdir.c
@@ -75,7 +75,9 @@ Create the DIRECTORY(ies), if they do not already exist.\n\
-m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - umask\n\
--verbose print a message for each created directory\n\
--help display this help and exit\n\
- --version output version information and exit\n"));
+ --version output version information and exit\n\
+"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu\n"));
}
exit (status);
}
diff --git a/src/mkfifo.c b/src/mkfifo.c
index 783e3f7c0..dd559ebc1 100644
--- a/src/mkfifo.c
+++ b/src/mkfifo.c
@@ -63,7 +63,9 @@ Create named pipes (FIFOs) with the given NAMEs.\n\
\n\
-m, --mode=MODE set permission mode (as in chmod), not 0666 - umask\n\
--help display this help and exit\n\
- --version output version information and exit\n"));
+ --version output version information and exit\n\
+"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu\n"));
}
exit (status);
}
diff --git a/src/mknod.c b/src/mknod.c
index b156e6099..915f619f8 100644
--- a/src/mknod.c
+++ b/src/mknod.c
@@ -74,7 +74,9 @@ MAJOR MINOR are forbidden for TYPE p, mandatory otherwise. TYPE may be:\n\
\n\
b create a block (buffered) special file\n\
c, u create a character (unbuffered) special file\n\
- p create a FIFO\n"));
+ p create a FIFO\n\
+"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu\n"));
}
exit (status);
}
diff --git a/src/mv.c b/src/mv.c
index b58a998af..607a3c87a 100644
--- a/src/mv.c
+++ b/src/mv.c
@@ -402,7 +402,9 @@ version control may be set with VERSION_CONTROL, values are:\n\
\n\
t, numbered make numbered backups\n\
nil, existing numbered if numbered backups exist, simple otherwise\n\
- never, simple always make simple backups\n"));
+ never, simple always make simple backups\n\
+"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu\n"));
}
exit (status);
}
diff --git a/src/rm.c b/src/rm.c
index 9ab4722b3..61ca609dc 100644
--- a/src/rm.c
+++ b/src/rm.c
@@ -538,7 +538,9 @@ Remove (unlink) the FILE(s).\n\
-v, --verbose explain what is being done\n\
-r, -R, --recursive remove the contents of directories recursively\n\
--help display this help and exit\n\
- --version output version information and exit\n"));
+ --version output version information and exit\n\
+"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu\n"));
}
exit (status);
}
diff --git a/src/rmdir.c b/src/rmdir.c
index 5e66d3bd2..2aa3f1ac5 100644
--- a/src/rmdir.c
+++ b/src/rmdir.c
@@ -89,7 +89,9 @@ Remove the DIRECTORY(ies), if they are empty.\n\
\n\
-p, --parents remove explicit parent directories if being emptied\n\
--help display this help and exit\n\
- --version output version information and exit\n"));
+ --version output version information and exit\n\
+"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu\n"));
}
exit (status);
}
diff --git a/src/sync.c b/src/sync.c
index ca097bc73..59b086616 100644
--- a/src/sync.c
+++ b/src/sync.c
@@ -43,6 +43,7 @@ Force changed blocks to disk, update the super block.\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\n"));
}
exit (status);
}
diff --git a/src/touch.c b/src/touch.c
index ccee5f9d7..d37e20679 100644
--- a/src/touch.c
+++ b/src/touch.c
@@ -260,7 +260,9 @@ Update the access and modification times of each FILE to the current time.\n\
--help display this help and exit\n\
--version output version information and exit\n\
\n\
-STAMP may be used without -t if none of -drt, nor --, are used.\n"));
+STAMP may be used without -t if none of -drt, nor --, are used.\n\
+"));
+ puts (_("\nReport bugs to bug-gnu-utils@gnu.ai.mit.edu\n"));
}
exit (status);
}