help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: What does code 123 mean?... (Shell command failed with code 123 and


From: Johan Bockgård
Subject: Re: What does code 123 mean?... (Shell command failed with code 123 and no output)
Date: Sat, 07 Jun 2008 11:04:20 +0200
User-agent: Gnus/5.110009 (No Gnus v0.9) Emacs/23.0.60 (gnu/linux)

Don Saklad <dsaklad@gnu.org> writes:

> In this particular case it happened to be...
> find -type f -print0 | xargs -0 grep -i strategylab
>
>
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> a.
> What does code 123 mean?... in
>
>      (Shell command failed with code 123 and no output)

  EXIT STATUS
         xargs exits with the following status:
         0 if it succeeds
         123 if any invocation of the command exited with status 1-125
         124 if the command exited with status 255
         125 if the command is killed by a signal
         126 if the command cannot be run
         127 if the command is not found
         1 if some other error occurred.

         Exit  codes  greater  than 128 are used by the shell to indicate
         that a
         program died due to a fatal signal.

> b.
> Where is there a list of codes and what the codes mean?...

man xargs

-- 
Johan Bockgård


reply via email to

[Prev in Thread] Current Thread [Next in Thread]