Re: Raw command line arguments

2009-04-24 Thread Gabriel Genellina
En Fri, 24 Apr 2009 06:40:23 -0300, Enchanter escribió: How to pass the raw command line arguments to the python? That depends on the OS or the shell you're using. Such as: mypython.py txt -c "Test Only" {Help} The arguments I hope to get is: tx

Re: Raw command line arguments

2009-04-24 Thread Dave Angel
Enchanter wrote: How to pass the raw command line arguments to the python? Such as: mypython.py txt -c "Test Only" {Help} The arguments I hope to get is: txt -c "Test Only" {Help} -- Keep the quotation marks in the arguments. As

Re: Raw command line arguments

2009-04-24 Thread Chris Rebert
On Fri, Apr 24, 2009 at 2:40 AM, Enchanter wrote: > How to pass the raw command line arguments to the python? > > Such as: > >     mypython.py  txt -c "Test Only" {Help} > > > The arguments I hope to get is: > >              txt -c "Test Only" {He

Raw command line arguments

2009-04-24 Thread Enchanter
How to pass the raw command line arguments to the python? Such as: mypython.py txt -c "Test Only" {Help} The arguments I hope to get is: txt -c "Test Only" {Help} -- Keep the quotation marks in the arguments. -- http://mail.python.org/mai