| Projects on Google Code | Results 1 - 10 of 14 |
Using annotations (python3) and decorators, pyopt aims to ease and simplify exposing python functions to the command line. It's easier than toying with sys.argv and works as though you wrote an entire optparse parser.
The following example auto-generates help with docstrings, usage, type casting ...
=gflags=
The `gflags` package contains a library that implements commandline flags processing. As such it's a replacement for `getopt()`. It has increased flexibility, including built-in support for C++ types like string, and the ability to define flags in the source file in which they're used....
This is yet another C++ version of the `getopt` function, that is, for parsing command line options and environment variables.
However, unlike other versions, the design goals of this one are:
* EASY to use
* EASY to learn
* mimc STL's streams
* minimum code to type
* smooth integr...
The "Getargs::Long" module allows usage of named parameters in function calls, along with optional argument type-checking. It provides an easy way to get at the parameters within the routine, and yields concise descriptions for the common cases of all-mandatory and all-optional parameter lists.
Lineguide is a tool to generate code to parse command line options and arguments for C programs. The generated code includes actions for parsed options and arguments. Lineguide is a Python script file. You can embed it in your projects with copying, not without installing.
Shell Flags (shFlags) is a library written to greatly simplify the handling of command-line flags in Bourne based Unix shell scripts (`bash`, `dash`, `ksh`, `sh`, `zsh`) on many Unix OSes (Linux, Solaris, Mac OS X, etc.).
Most shell scripts use `getopt` for flags processing, but the different ver...
shell,
unix,
bourne,
bash,
dash,
zsh,
pdksh,
osx,
solaris,
linux,
sh,
ksh,
gflags,
command-line,
getopt
Bash libraries for:<br/>
- Array handling<br/>
- Getting user input passwords into variables<br/>
- Logging<br/>
- Processing command line options<br/>
- Remote command execution with no password requisition<br/>
This is the list up to the moment.
Script uses Getopt::Long syntax for command-line options specification and allows to define a set of commonly-used options, and extend it with script-specific ones if required.
Java equivalent of the GNU getopt
Looking for a replacement for getopt? Want to add commandline options to your program but don't want to get bogged down in the complexity of it all? Then SuperGetOpt is for you. Built-in type checking and error handling provide useful user feedback. Fixed and variable arg lists allowed.
Here is a...