Cantanker wrote:
> 
> Hi there, I bet this is another really stupid thing, but I'm gestumped.

gestumped, eh? Es ist wirklich sehr leicht...

> In a directory I have a script:
> 
> -rwxr-xr-x   1 az       users         557 Mar 16 12:52 install.sh*
> 
> Upon attempting to execute it, I'm told it doesn't exist:
> 
> $ ./install.sh
> ./install.sh: ./install.sh: No such file or directory

This isn't bash telling you that install.sh doesn't exist, it is
install.sh telling you that a file it is attempting to operate on
doesn't exist. Otherwise the error would be more like "bash: command not
found".

Try running it with the -x flag:
$ /bin/sh -x ./install.sh

This should show up where the error is happening.

Matthew
--
SLUG - Sydney Linux Users Group Mailing List - http://www.slug.org.au
To unsubscribe send email to [EMAIL PROTECTED] with
unsubscribe in the text

Reply via email to