- argv_options(+Argv, -RestArgv, -Options) is det
- Generic transformation of long commandline arguments to options.
Each --Name=Value is mapped to Name(Value). Each plain name is
mapped to Name(true), unless Name starts with
no-
, in which
case the option is mapped to Name(false). Numeric option values
are mapped to Prolog numbers.
- See also
- -
library(optparse)
provides a more involved option library,
providing both short and long options, help and error handling.
This predicate is more for quick-and-dirty scripts.