Re: shebang in cross platform scripts

2005-04-06 Thread Bill Mill
On Apr 6, 2005 11:06 AM, Ivan Van Laningham <[EMAIL PROTECTED]> wrote: > Hi All-- > > Simon Brunning wrote: > > > > On Apr 6, 2005 2:37 PM, rbt <[EMAIL PROTECTED]> wrote: > > > > > Does the line below have any negative impact on Windows machines? I > > > develop and test mostly on Unix, but my scr

Re: shebang in cross platform scripts

2005-04-06 Thread Ivan Van Laningham
Hi All-- Simon Brunning wrote: > > On Apr 6, 2005 2:37 PM, rbt <[EMAIL PROTECTED]> wrote: > > > Does the line below have any negative impact on Windows machines? I > > develop and test mostly on Unix, but my scripts are often used on Win > > systems too. > > > > #!/usr/bin/env python > > Nope.

Re: shebang in cross platform scripts

2005-04-06 Thread Bill Mill
On Apr 6, 2005 9:37 AM, rbt <[EMAIL PROTECTED]> wrote: > > Haven't tested this on Windows yet... thought I'd ask here: > > Does the line below have any negative impact on Windows machines? I > develop and test mostly on Unix, but my scripts are often used on Win > systems too. > > #!/usr/bin/env

Re: shebang in cross platform scripts

2005-04-06 Thread Diez B. Roggisch
rbt wrote: > > Haven't tested this on Windows yet... thought I'd ask here: > > Does the line below have any negative impact on Windows machines? I > develop and test mostly on Unix, but my scripts are often used on Win > systems too. > > #!/usr/bin/env python Thanks to the # being the comment

Re: shebang in cross platform scripts

2005-04-06 Thread Simon Brunning
On Apr 6, 2005 2:37 PM, rbt <[EMAIL PROTECTED]> wrote: > Does the line below have any negative impact on Windows machines? I > develop and test mostly on Unix, but my scripts are often used on Win > systems too. > > #!/usr/bin/env python Nope. On Windows it's just a comment. -- Cheers, Simon B

shebang in cross platform scripts

2005-04-06 Thread rbt
Haven't tested this on Windows yet... thought I'd ask here: Does the line below have any negative impact on Windows machines? I develop and test mostly on Unix, but my scripts are often used on Win systems too. #!/usr/bin/env python Many thanks, rbt -- http://mail.python.org/mailman/listinfo/pyt