Next: , Up: Program Arguments   [Contents][Index]


25.1.1 Program Argument Syntax Conventions

POSIX recommends these conventions for command line arguments. getopt (see Parsing program options using getopt) and argp_parse (see Parsing Program Options with Argp) make it easy to implement them.

GNU adds long options to these conventions. Long options consist of -- followed by a name made of alphanumeric characters and dashes. Option names are typically one to three words long, with hyphens to separate words. Users can abbreviate the option names as long as the abbreviations are unique.

To specify an argument for a long option, write --name=value. This syntax enables a long option to accept an argument that is itself optional.

Eventually, GNU systems will provide completion for long option names in the shell.


Next: Parsing Program Arguments, Up: Program Arguments   [Contents][Index]