ANSI C library for parsing GNU style command line arguments
Argtable is an ANSI C library for parsing GNU style command line arguments, as in foo -abc -o myfile --help --count=7. It enables a program's command line syntax to be defined in the source code as an array of argtable structs. The parsing itself is done using GNU getopt and so is 100% GNU compatible.
Argtable is an ANSI C library for parsing GNU style command line arguments, as in foo -abc -o myfile --help --count=7. It enables a program's command line syntax to be defined in the source code as an array of argtable structs. The parsing itself is done using GNU getopt and so is 100% GNU compatible.
To install argtable, run the following command in macOS terminal (Applications->Utilities->Terminal)
sudo port install argtable
To see what files were installed by argtable, run:
port contents argtable
To later upgrade argtable, run:
sudo port selfupdate && sudo port upgrade argtable
Reporting an issue on MacPorts Trac
The MacPorts Project uses a system called Trac to file tickets to report bugs and enhancement requests.
Though anyone may search Trac for tickets, you must have a GitHub account in order to login to Trac to create tickets.