package cmdliner
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha512=4c46bc334444ff772637deae2f5ba03645d7a1b7db523470a1246acfce79b971c764d964cbb02388639b3161b279700d9ade95da550446fb32aa4849c8a8f283
doc/cmdliner/Cmdliner/Cmd/Exit/index.html
Module Cmd.Exit
Exit codes and their information.
Exit codes
The type for exit codes.
Warning. You should avoid status codes strictly greater than 125 as those may be used by some shells.
val ok : codeok is 0, the exit status for success.
val some_error : codesome_error is 123, an exit status for indisciminate errors reported on stderr.
val cli_error : codecli_error is 124, an exit status for command line parsing errors.
val internal_error : codeinternal_error is 125, an exit status for unexpected internal errors.
Exit code information
exit_info ~docs ~doc min ~max describe the range of exit statuses from min to max (defaults to min). doc is the man page information for the statuses, defaults to "undocumented". docs is the title of the man page section in which the statuses will be listed, it defaults to Manpage.s_exit_status.
In doc the documentation markup language can be used with following variables:
$(status), the value ofmin.$(status_max), the value ofmax.- The variables mentioned in the
Cmd.info
val defaults : info listdefaults are exit code information for ok, some_error cli_error and internal_error.