Re: [Tutor] About the vertical bar input

2009-06-29 Thread Mark Tolonen
"hyou" wrote in message news:blu143-ds478a37dc2b1db050e5b96c4...@phx.gbl... Hello, I'm trying to write a script that simply execute a command line like: C:\...(path)..\Devenv solution /build "Debug|Win32" However, in Python the "|" symbol is reserved thus I just can't make the command line

Re: [Tutor] About the vertical bar input

2009-06-29 Thread Dave Angel
"hyou" wrote: Hello, I'm trying to write a script that simply execute a command line like: C:\...(path)..\Devenv solution /build "Debug|Win32" However, in Python the "|" symbol is reserved thus I just can't make the command line above working once I added the "|" sign in it. How

Re: [Tutor] About the vertical bar input

2009-06-29 Thread Kent Johnson
On Mon, Jun 29, 2009 at 1:24 PM, hyou wrote: > I’m trying to write a script that simply execute a command line like: > > C:\...(path)..\Devenv solution /build “Debug|Win32” > > > > However, in Python the “|” symbol is reserved thus I just can’t make the > command line above working once I added th

[Tutor] About the vertical bar input

2009-06-29 Thread hyou
Hello, I'm trying to write a script that simply execute a command line like: C:\...(path)..\Devenv solution /build "Debug|Win32" However, in Python the "|" symbol is reserved thus I just can't make the command line above working once I added the "|" sign in it. How can I put the "origi