Re: [Tutor] shebang problem

2006-11-05 Thread Brian van den Broek
Alan Gauld said unto the world upon 11/04/2006 06:47 PM: > [EMAIL PROTECTED]:~/test$ ls -la shebangtest.py > -rwxr-xr-- 1 brian brian 68 2006-11-04 02:29 shebangtest.py > > so the file is called shebangtest.py... > >> [EMAIL PROTECTED]:~/test$ shebangtest >> bash: shebangtest: command not found >

Re: [Tutor] shebang problem

2006-11-04 Thread Carlos Hanson
On Sat, November 4, 2006 11:07 am, Jonathon Sisson wrote: > Brian, > > It's not a permissions issue... > > (from the original e-mail...see below) > >> [EMAIL PROTECTED]:~/test$ ls -la shebangtest.py -rwxr-xr-- 1 brian > >> brian 68 2006-11-04 02:29 shebangtest.py > > This is clearly executable by

[Tutor] shebang problem

2006-11-04 Thread Jonathon Sisson
Brian, It's not a permissions issue... (from the original e-mail...see below) >> [EMAIL PROTECTED]:~/test$ ls -la shebangtest.py >> -rwxr-xr-- 1 brian brian 68 2006-11-04 02:29 shebangtest.py This is clearly executable by brian, and clearly being executed by brian. The shebang line is correc

Re: [Tutor] shebang problem

2006-11-04 Thread Rick Pasotto
On Sat, Nov 04, 2006 at 06:11:03PM -0600, Brian van den Broek wrote: > Hi all, > > I'm still getting comfortable with Linux and this might be an OS > rather than a python problem. > > I am trying to make a script directly executable. I've reviewed the > 2nd ed of the Nutshell, and I cannot work o

Re: [Tutor] shebang problem

2006-11-04 Thread Alan Gauld
[EMAIL PROTECTED]:~/test$ ls -la shebangtest.py -rwxr-xr-- 1 brian brian 68 2006-11-04 02:29 shebangtest.py so the file is called shebangtest.py... > [EMAIL PROTECTED]:~/test$ shebangtest > bash: shebangtest: command not found but you try to run shebangtest... bash can't find the file. you didn

Re: [Tutor] shebang problem

2006-11-04 Thread Carlos Hanson
On Sat, November 4, 2006 4:11 pm, Brian van den Broek wrote: > Hi all, > > I'm still getting comfortable with Linux and this might be an OS > rather than a python problem. > > I am trying to make a script directly executable. I've reviewed the > 2nd ed of the Nutshell, and I cannot work out what I'

[Tutor] shebang problem

2006-11-04 Thread Brian van den Broek
Hi all, I'm still getting comfortable with Linux and this might be an OS rather than a python problem. I am trying to make a script directly executable. I've reviewed the 2nd ed of the Nutshell, and I cannot work out what I'm doing wrong. I'm running ubunutu 6.10 (edgy eft). Here's a copy past of