Tagged Questions
An exit code is signaled by a program on termination to indicate if it completed successfully, or, if it did not, what sort of failure condition occurred.
77
votes
3answers
51k views
How do I get the application exit code from a Windows command line?
I am running a program and want to see what its return code is (since it returns different codes based on different errors).
I know in Bash I can do this by running
echo $?
What do I do when ...
51
votes
8answers
27k views
How do I specify the exit code of a console application in .net?
I have a trivial console app in .net. It's just a test part of a larger application. I'd like to specify the "exit code" of my console app. How do I do this?
Thanks!
26
votes
5answers
21k views
How do you capture stderr, stdout, and the exit code all at once, in Perl?
Is it possible to run an external process from Perl, capture its stderr, stdout AND the process exit code?
I seem to be able to do combinations of these, e.g. use backticks to get stdout, IPC::Open3 ...
21
votes
9answers
20k views
Are there any standard exit status codes in Linux?
A process is considered to have completed correctly in Linux if its exit status was 0. I've seen that segmentation faults often result in an exit status of 11, though I don't know if this is simply ...
14
votes
16answers
65k views
gcc-4.2 failed with exit code 1 iphone
I've seen this error with different variations on discussion forums but being a non programmer I'm not sure how to progress this.
Basically I have code which I found to help me with changing the ...
13
votes
2answers
339 views
Why cant' I return bigger values from main function?
I am trying to return a bigger value like 1000 form my main function, but when I type echo $? it displays 0.
If I return a smaller value like 100 it displays the correct value.
My Code :
int ...
13
votes
5answers
9k views
How to get the exit status of a Java program in Windows batch file
Analogous to the $? in Linux, is there a way to get the exit status of a program in a Windows batch file (.bat)?
Say for example the program has a System.exit(0) upon successful execution, and a ...
11
votes
4answers
3k views
ExitCodes bigger than 255, possible?
If yes, on which operating system, shell or whatever?
Consider the following java program (I'm using java just as an example, any language would be good for this question, which is more about ...
6
votes
2answers
603 views
Difference between Environment.Exit and simple return 2 from Main
From outside of the application, is there any difference between
...
Environment.Exit(2)
and
static int Main()
{
...
return 2;
}
?
5
votes
2answers
596 views
C#: Using Environment.ExitCode versus returning int from Main
I am planning to use the return code of the C# executable in one of my shell script. I have two options:
Returning a int value from the main method
class MainReturnValTest
{
static int Main()
...
5
votes
2answers
511 views
C# Process Exited Problem
lets say I have a process with the ID 1234. This process is running before my application runs.
I have this code:
Process app = Process.GetProcessById(1234);
...
5
votes
3answers
521 views
How to bypass the 0-255 range limit for sys.exit() in python?
In python (on a Linux system), I'm launching a command using os.system() and retrieving the return code. If that return code is different from 0, I would like to make the program exit with that same ...
5
votes
2answers
3k views
Run MsiExec from PowerShell and get Return Code
With BAT/CMD script I can simply use "msiexec /i /quiet /norestart" and then check %errorlevel% for the result. With VBScript, using the Wscript.Shell object Run() method, I can get the result like ...
5
votes
1answer
365 views
How to exit a program with an exit code: C#
How to exit a program with an exit code in C#?
In java it would be System.exit(int code);
5
votes
3answers
478 views
Execute process conditionally in Windows PowerShell (e.g. the && and || operators in Bash)
I'm wondering if anybody knows of a way to conditionally execute a program depending on the exit success/failure of the previous program. Is there any way for me to execute a program2 immediately ...
4
votes
2answers
188 views
Is it possible to process exit codes > 255 with perl?
First, find a little background about exit code in perl (also here)and on Windows.
Now - when I execute another process from a perl script (I'm open as to the method, qx/open/system/exec/IPC::Run, ...
4
votes
4answers
416 views
How to return an error code with Halt(n) from an Exception block with D2007?
Update: It seems to be specific to D2007. It works in D2010 like it worked in older version.
I would like to return an exit code depending on the type of Exception caught in the Eception Handler ...
4
votes
5answers
687 views
What does the status code of the perl interpreter mean?
I'm trying to execute a copy of the Perl interpreter using Java's Runtime.exec(). However, it returned error code 9. After running the file a few times, the perl interpreter mysteriously started to ...
4
votes
4answers
313 views
How do I execute an external script while capturing both output and exit code in Perl?
I'm trying to check for an SVN tag existence from a Perl script. So I try calling svn info $url, read exit code and suppress standard output and standard error streams. However, I struggle to do this ...
4
votes
1answer
3k views
What is the cause of JVM exit code 1073807364?
I've built a RCP-based application, and one of my users running on Windows XP, Sun JVM 1.6.0_12 had a full application crash. After the app was running for two days (and this is not a new version or ...
4
votes
2answers
1k views
How can I set the exit code in Inno Setup?
I want to set the exit code for my installation, this way I will know why the installation was aborted. I'm using Inno Setup.
4
votes
8answers
10k views
How to quit a C++ program?
How do I quit a C++ program. Which function is called to end a program and which values does the method take?
To clarify I want to exit a C++ program from within my code. And I may want to exit the ...
3
votes
1answer
136 views
How to exit main in haskell given a condition
I have a main function that does a lot of IO. At one point, however, I want to check a variable like not (null shouldBeNull) exit the whole program, without continuing, with a linux exitcode 1 and ...
3
votes
1answer
382 views
Compiler internal error. Process terminated with exit code 3
I am using Intellij 9.0.4 I checked out a project from SVN, set up tomcat (its running locally), and now I am trying to Make (or Compile) but it keeps giving me Error:Compiler internal error. Process ...
3
votes
2answers
422 views
Xcode Error: Command /usr/bin/codesign failed with exit code 1
I have no idea why I am getting this error. I believe that I have all the correct provisioning profiles and such. I did just move to a new computer but I did also bring over the private keychain ...
3
votes
3answers
118 views
How to make valgrind report an error when there are still reachable allocs
I'm writing a compiler that produces C code. The programs produced consist only of the main function, and they use a lot of memory, that is allocated with malloc(). Most of the memory allocated is ...
3
votes
5answers
238 views
Running code on program exit in Java
This is a general question about Java.
Is it possible to write a method that System.exit will call when you terminate a program?
3
votes
3answers
547 views
Mono Process.Start returning ExitCode 255?
I have a simple C# Mono 2.10 application running on CentOS 5.5 that calls
Process.Start("/path/to/myapp/myapp.exe","-someArgs");
I am able to get a process ID back and running with
mono ...
3
votes
2answers
781 views
Exit code when python script has unhandled exception
I need a method to run a python script file, and if the script fails with an unhandled exception python should exit with a non-zero exit code. My first try was something like this:
import sys
if ...
3
votes
4answers
190 views
Is it up to the programmer to deallocate on exit()?
I have a program and when I input wrong data from the keyboard it just exits with exit(1).
I was testing with Valgrind and while this happens there are no errors, but I can see that there are still ...
3
votes
2answers
189 views
Java cleanup step
In java I remember there was some method you could override to be called when the jvm exits or a class is destroyed, almost like some cleanup step? I cant seem to find what it was called ...
3
votes
1answer
315 views
Customize zsh's prompt when displaying previous command exit code
Zsh includes the ability to display the return code/exit code of the previous command in the prompt by using the %? escape sequence.
However I would like to have the following prompt:
user@host ~ ...
3
votes
2answers
372 views
Process Exit Code When Process is Killed Forcibly
When we kill a process in Windows with Task Manager End Process command, will the process still return an exit code? And if so, what exit code it returns? Thanks
3
votes
2answers
1k views
Where I can find a list of “mysqldump” exit codes?
I know that exit code = 0 means No error.
I got exit code = 2. What does it means ?
Where I can see the complete list of mysqldump exit codes ?
3
votes
1answer
226 views
Are javaws exit codes really broken?
I was working to automate same java code execution using JNLP and I was surprised to discover that jawaws did not gave me a valid return code.
Original execution line was:
javaws -wait ...
3
votes
2answers
756 views
Get error code from within a batch file
I have a batch file that runs a couple executables, and I want it to exit on success, but stop if the exit code <> 0. How do I do this?
3
votes
8answers
5k views
How to quit a java app from within the program
What's the best way to quit a Java application with code?
3
votes
3answers
1k views
Is it possible to get the exit code from a subshell?
Let's imagine I have a bash script, where I call this:
bash -c "some_command"
do something with code of some_command here
Is it possible to obtain the code of some_command? I'm not executing ...
3
votes
2answers
1k views
Trapping Error Status in MSBuild
As part of some build automation of running xUnit.net tests with MSBuild, I'm running into a case where I need to loop over a batch of items.
Inside the loop, I need to detect whether an iteration ...
3
votes
4answers
2k views
Use of System.exit(0)
public class WrapperTest {
static {
print(10);
}
static void print(int x) {
System.out.println(x);
System.exit(0);
}
}
In the above code System.exit(0) is ...
2
votes
3answers
164 views
Combining pipe with exit status in bash shell script
I have this bash shell-script command that causes date to run if make succeeds (terminates with zero exit status) and vice versa:
make && date
but now I want to process its output e.g.
...
2
votes
4answers
98 views
Obtaining exit status values from GNU parallel
The Perl wrapper below executes commands in parallel, saving STDOUT
and STDERR to /tmp files:
open(A,"|parallel");
for $i ("date", "ls", "pwd", "factor 17") {
print A "$i 1> '/tmp/$i.out' ...
2
votes
3answers
91 views
Program exit state
I have a question about program exit state in Linux. In my program, I fork a child process and invoke waitpid to reap it. When waitpid returns, I wanna check exit state of my child process. I turn to ...
2
votes
1answer
372 views
How do I get the bash command exit code from a Process run from within Java?
I have a program which is:
import java.io.*;
import java.util.*;
public class ExecBashCommand {
public static void main(String args[]) throws IOException {
if (args.length <= ...
2
votes
1answer
270 views
What's the equivalent of ExitThread(ExitCode) and GetExitCodeThread in C# & .net?
Reading the VS2008 help file I've figured out that the clean way of exiting a thread (in .net) is either by using a return statement (in C#) or letting the thread reach the end of the method.
...
2
votes
1answer
323 views
How do I set the MSI exit-code to 0 if product is already installed using WiX?
I already have the following line in my WiX setup to check if the current version is already installed:
<UpgradeVersion OnlyDetect='yes' Property='NEWPRODUCTFOUND' Minimum='$(var.ProductVersion)' ...
2
votes
3answers
831 views
Check if process returns 0 with batch file
I want to start a process with a batch file and if it returns nonzero, do something else. I need the correct syntax for that.
Something like this:
::x.bat
@set RetCode=My.exe
@if %retcode% is ...
2
votes
2answers
283 views
List of Windows application's exit codes
Where can I get the list of Windows application's exit codes?
Thank you in advance
2
votes
1answer
629 views
Getting the exit code from a process submitted with qsub on Sun Grid Engine
I would like to submit jobs via qsub on Sun Grid Engine (now: Oracle Grid Engine?). I do not wish to use the -sync yes option or qrsh, because I want my controlling program to be single-threaded and ...
2
votes
5answers
810 views
Capturing exit status from STDIN in Perl
I have a perl script that is run with a command like this:
/path/to/binary/executable | /path/to/perl/script.pl
The script does useful things to the output for the binary file, then exits once ...