bash:command_exit_status
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
bash:command_exit_status [2019/12/11 00:17] – created peter | bash:command_exit_status [2021/01/26 16:55] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== BASH - Command Exit Status ====== | ||
- | |||
- | An exit status is an integer between 0 and 255 returned when a program exits. | ||
- | |||
- | Usually readable by running | ||
- | |||
- | <code bash> | ||
- | echo $? | ||
- | </ | ||
- | |||
- | This is in effect one of the key pieces of the API which shells use to communicate with the programs that they run. | ||
- | |||
- | ---- | ||
- | |||
- | In Bash-like shells, status 0 signals success and that status 1 is an error. | ||
- | |||
- | A misuse of the program can either be signaled by 1 (as demonstrated by many programs including git or ls), or possibly a 2, which signals the misuse of a shell built-in. | ||
- | |||
- | When a program receives a fatal signal, it will exit with a code of 128 + n where n is the signal code. | ||
- | |||
- | For example, for a program sent signal 2 (SIGINT, or more commonly thought of as Ctrl+C): | ||
- | |||
- | <code bash | ||
- | curl -n https:// | ||
- | ^C | ||
- | |||
- | echo $? | ||
- | 130 | ||
- | </ | ||
- | |||
- | The Advanced Bash-script Guide lists a number of other [[http:// | ||
- | |||
- | Some attempt at standardization has also been made in the kernel header sysexits.h: | ||
- | |||
- | <file bash / | ||
- | #define EX_OK 0 /* successful termination */ | ||
- | |||
- | #define EX__BASE 64 / | ||
- | |||
- | #define EX_USAGE 64 / | ||
- | #define EX_DATAERR 65 / | ||
- | #define EX_NOINPUT 66 / | ||
- | #define EX_NOUSER 67 / | ||
- | #define EX_NOHOST 68 / | ||
- | #define EX_UNAVAILABLE 69 / | ||
- | #define EX_SOFTWARE 70 / | ||
- | #define EX_OSERR 71 / | ||
- | #define EX_OSFILE 72 / | ||
- | #define EX_CANTCREAT 73 / | ||
- | #define EX_IOERR 74 / | ||
- | #define EX_TEMPFAIL 75 / | ||
- | #define EX_PROTOCOL 76 / | ||
- | #define EX_NOPERM 77 / | ||
- | #define EX_CONFIG 78 / | ||
- | |||
- | #define EX__MAX 78 / | ||
- | </ | ||
bash/command_exit_status.1576023447.txt.gz · Last modified: 2020/07/15 09:30 (external edit)