summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2009-09-14 09:18:30 +0200
committerJim Meyering <meyering@redhat.com>2009-09-14 09:18:30 +0200
commiteb1299481aeda0c1b10d0186e00a088597e603a8 (patch)
treee0b37b5c434a38428ff8c7961eeea77fba1f56db /src
parent255a6a201eaaef016ca909332f82bd86ef7d42ca (diff)
downloadcoreutils-eb1299481aeda0c1b10d0186e00a088597e603a8.tar.xz
doc: improve timeout's --help message
* src/timeout.c (usage): Improve --help description.
Diffstat (limited to 'src')
-rw-r--r--src/timeout.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/timeout.c b/src/timeout.c
index 6d9d10912..e4b170445 100644
--- a/src/timeout.c
+++ b/src/timeout.c
@@ -153,12 +153,11 @@ Mandatory arguments to long options are mandatory for short options too.\n\
fputs (HELP_OPTION_DESCRIPTION, stdout);
fputs (VERSION_OPTION_DESCRIPTION, stdout);
fputs (_("\n\
-If the command times out, then we exit with status 124,\n\
-otherwise the normal exit status of the command is returned.\n\
-If no signal is specified, the TERM signal is sent. The TERM signal\n\
-will kill processes which do not catch this signal. For other processes,\n\
-it may be necessary to use the KILL (9) signal, since this signal cannot\n\
-be caught.\n"), stdout);
+If the command times out, then exit with status 124. Otherwise, exit\n\
+with the status of COMMAND. If no signal is specified, send the TERM\n\
+signal upon timeout. The TERM signal kills any process that does not\n\
+block or catch that signal. For other processes, it may be necessary to\n\
+use the KILL (9) signal, since this signal cannot be caught.\n"), stdout);
emit_bug_reporting_address ();
}
exit (status);