sbase

suckless unix tools
git clone git://git.2f30.org/sbase
Log | Files | Refs | README | LICENSE

commit 7a5369ae04736f0f83a253b5a598822b10fb39fb
parent 59222b919398fdee5fc7bcf186bd32f1999e85b8
Author: sin <sin@2f30.org>
Date:   Tue,  7 Jan 2014 11:37:24 +0000

Update xargs(1) manpage to mention the possible exit codes

Diffstat:
Mxargs.1 | 12++++++++++++
1 file changed, 12 insertions(+), 0 deletions(-)

diff --git a/xargs.1 b/xargs.1 @@ -26,3 +26,15 @@ newlines, may be escaped by a backslash. .BI \-r Do not run the command if there are no arguments. Normally the command is executed at least once even if there are no arguments. +.SH EXIT STATUS +xargs exits with one of the following values: + + 0 All invocations of command returned a zero exit + status. + 123 One or more invocations of command returned a + nonzero exit status. + 124 The command exited with a 255 exit status. + 125 The command was killed or stopped by a signal. + 126 The command was found but could not be executed. + 127 The command could not be found. + 1 Some other error occurred.