We are independent & ad-supported. We may earn a commission for purchases made through our links.
Advertiser Disclosure
Our website is an independent, advertising-supported platform. We provide our content free of charge to our readers, and to keep it that way, we rely on revenue generated through advertisements and affiliate partnerships. This means that when you click on certain links on our site and make a purchase, we may earn a commission. Learn more.
How We Make Money
We sustain our operations through affiliate commissions and advertising. If you click on an affiliate link and make a purchase, we may receive a commission from the merchant at no additional cost to you. We also display advertisements on our website, which help generate revenue to support our work and keep our content free for readers. Our editorial team operates independently of our advertising and affiliate partnerships to ensure that our content remains unbiased and focused on providing you with the best information and recommendations based on thorough research and honest evaluations. To remain transparent, we’ve provided a list of our current affiliate partners here.
Software

Our Promise to you

Founded in 2002, our company has been a trusted resource for readers seeking informative and engaging content. Our dedication to quality remains unwavering—and will never change. We follow a strict editorial policy, ensuring that our content is authored by highly qualified professionals and edited by subject matter experts. This guarantees that everything we publish is objective, accurate, and trustworthy.

Over the years, we've refined our approach to cover a wide range of topics, providing readers with reliable and practical advice to enhance their knowledge and skills. That's why millions of readers turn to us each year. Join us in celebrating the joy of learning, guided by standards you can trust.

What Is the Exit Status?

By Eugene P.
Updated: May 16, 2024

The exit status of a program, also called the return code, is a number that a program passes to the operating system, script or other process that originally executed it once the program has finished running. There are no real rules for what the numbers used as an exit status mean, although a value of zero traditionally means the program exited normally, and any non-zero value means the program terminated unexpectedly. By assigning a number to the exit status, the original program or process that called the code can tell whether the program successfully performed the tasks needed or other actions need to be taken.

Nearly all computer languages and many scripting languages have some mechanism or function in place that can return an exit status. There are situations in which a program can intentionally terminate in the middle of running, using a specific error code to indicate that something is wrong, such as a missing data file or a lack of computer memory. Programs that do not explicitly define an exit status code will return a zero to the calling program unless the operating system or language interpreter terminates the program because of errors.

The exit status also can be used to communicate with a script or another process by passing specific values back that indicate what action should be taken next. One example would be a script that is designed to keep a program running despite possible times when the program might exit for maintenance. This scheme would operate with the script executing the program and then waiting for it to exit. The programmers could arrange it so the program returns one number to mean it is permanently exiting and should not be restarted, and another number could instruct the script to wait for a period of time and then restart the program; still a third value could indicate the program encountered an error and needs attention from a programmer.

The use of an exit status code for communications is convenient in certain situations because of the security and other limitations that some programs have under different operating systems. There are many instances in which it is impossible for a program to communicate with its calling process or another program running parallel on the same system. In these situations, the options for communications between programs would be limited to complex schemes involving shared memory, network socket connections or writing files. By using an exit status, simple information can be passed in a very basic way that does not require a custom framework to be developed.

EasyTechJunkie is dedicated to providing accurate and trustworthy information. We carefully select reputable sources and employ a rigorous fact-checking process to maintain the highest standards. To learn more about our commitment to accuracy, read our editorial process.
Discussion Comments
Share
https://www.easytechjunkie.com/what-is-the-exit-status.htm
EasyTechJunkie, in your inbox

Our latest articles, guides, and more, delivered daily.

EasyTechJunkie, in your inbox

Our latest articles, guides, and more, delivered daily.