The exitstatus tag has no wiki summary.
5
votes
3answers
647 views
unix shell, getting exit code with piped child
Let's say I do this in a unix shell
$ some-script.sh | grep mytext
$ echo $?
this will give me the exit code of grep
but how can I get the exit code of some-script.sh
EDIT
Assume that the pipe ...
4
votes
1answer
89 views
Return data type of the function in c programming
i have to use exit(1) command in a function.
Does it have anything to do with the return data type of the function in which it is being used?
1
vote
2answers
283 views
Bourne: if statement testing exit status
What is the difference:
if IsServerStarted ; then ...
and
if [ IsServerStarted -eq 0 ] ; then ...
Seems to me that these two statements should be equivalent? Strangely the second statement is ...
1
vote
4answers
366 views
Bourne Shell: Graceful way to get exit status
Is there a more graceful way to do this (bourne shell)?
IsThereAnyApplesLeft
applesLeft=$?
Normally in c or java I would do:
applesLeft=IsThereAnyApplesLeft
0
votes
1answer
119 views
channel.recv_exit_status in paramiko always returns the return code of the first command executed over invoke_shell
I am getting some discrepancy in the return code below. May be I am not using in the proper way. Every-time I print the return code, it prints the same as the first one has returned. Do I need to ...
0
votes
1answer
143 views
Run Time Error (exit status 1) when submitting puzzle in Python
I have python 2.7 installed on my windows computer. I'm trying to email a puzzle answer to Spotify, which is running Python 2.6.6. When I submit my *.py source code, I'm getting the following error:
...
0
votes
0answers
167 views
Maven returns an exit status of 0 even for failed builds?
I am using Maven v2.2.1 on my linux box. I have a build script that invokes mvn and does something based on the build status. I noticed that the exit status code is set to 0 irrespective of whether ...
0
votes
2answers
101 views
Exit status code 4479
Does anybody happen to know what exit status code 4479 (0x117f) means on an Ubuntu Linux system? I am getting this without my program encoding it (I only have EXIT_SUCCESS and EXIT_FAILURE, which are ...