Re: python script as executable

2008-04-28 Thread Arnaud Delobelle
sandipm <[EMAIL PROTECTED]> writes: > Hi, > I have written a python script to run from cron. > I have put #!/usr/bin/env python at top. file executes correctly when > I run using python filename.py but > it fails to execute when try to run it like script/command. > it throws error: > :No such fil

Re: python script as executable

2008-04-28 Thread sandipm
thanks it worked On Apr 29, 10:49 am, "Eric Wertman" <[EMAIL PROTECTED]> wrote: > Try to ftp it in ascii mode, or find a dos2unix utility .. the file > has probably got \r\n (windows) line terminators in it.. causes > problems. I guess it's also possible that /usr/bin/env doesn't > exist... not

Re: python script as executable

2008-04-28 Thread Eric Wertman
Try to ftp it in ascii mode, or find a dos2unix utility .. the file has probably got \r\n (windows) line terminators in it.. causes problems. I guess it's also possible that /usr/bin/env doesn't exist... not likely though. On Tue, Apr 29, 2008 at 1:36 AM, sandipm <[EMAIL PROTECTED]> wrote: > Hi