On Apr 26, 9:04 am, Pieter Edelman <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I'm currently writing a command-line program in Python, which takes
> commands in the form of:
> ./myprog.py [OPTIONS] ARGS

Once you start having too many arguments and options on the command
line, you might
consider using the cmd module of the standard library instead. Then
you could implement your own
expansion, and you would have portability for non-Unix system too.

  Michele Simionato

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to