Rust Exit Codes

Commonly used exit codes for usage in applications.

Using appropriate exit codes greatly helps users of applications to assert them in their own scripts and take appropriate actions based on the returned code. Simply using the catchall exit code 1 all the time does not help others in any way. Unless there is only a single source of error in the complete application, which is very unlikely.

Installation

Add the following to your Cargo.toml file:

toml [dependencies] exit_codes = "1.0.0"

Usage

```rust extern crate exit_code;

fn main() { use std::process::exit; use exit_code::SUCCESS;

println!("Hello, World!");
exit(SUCCESS);

} ```

This crate provides two additional functions that allow validation of exit codes:

References