795 B
795 B
getopt
Parse command line arguments. More information: https://www.gnu.org/software/libc/manual/html_node/Getopt.html.
- Parse optional
verbose/versionflags with shorthands:
getopt -o vV --longoptions verbose,version -- --version --verbose
- Add a
--fileoption with a required argument with shorthand-f:
getopt -o f: --longoptions file: -- --file=somefile
- Add a
--verboseoption with an optional argument with shorthand-v, and pass a non-option parameterarg:
getopt -o v:: --longoptions verbose:: -- --verbose arg
- Accept a
-rand--verboseflag, a--acceptoption with an optional argument and add a--targetwith a required argument option with shorthands:
getopt -o rv::s::t: --longoptions verbose,source::,target: -- -v --target target