ServerJS/Command Line: Difference between revisions
< ServerJS
Jump to navigation
Jump to search
(New page: = Command line processing = Many server-side tools use a command line as their interface, and there should be a high-level way to deal with the arguments. == Prior Art == * Python's [ht...) |
(→Prior Art: WScript.Shell) |
||
| Line 4: | Line 4: | ||
== Prior Art == | == Prior Art == | ||
* Microsoft [http://msdn.microsoft.com/en-us/library/aew9yb99(VS.85).aspx WScript.Shell] object. | |||
* Python's [http://docs.python.org/library/optparse.html optparse] module provides a reasonably powerful, flexible and full-featured option parser | * Python's [http://docs.python.org/library/optparse.html optparse] module provides a reasonably powerful, flexible and full-featured option parser | ||
Revision as of 05:10, 13 February 2009
Command line processing
Many server-side tools use a command line as their interface, and there should be a high-level way to deal with the arguments.
Prior Art
- Microsoft WScript.Shell object.
- Python's optparse module provides a reasonably powerful, flexible and full-featured option parser