Re: running script files.

1997-03-07 Thread A. M. Varon
Thanks everyone for helping me out! Another quick question, when i boot, i see all kinds of cdrom drives being probed at. like mcd, aztcd, sony, gscd etc. I have looked at my /lib/modules, and the only cdrom module avail. is sbpcd.o. The probing of the cdroms delays the booting of debian to 2 t

Re: running script files.

1997-03-06 Thread Graeme Stewart
> "John" == John T Larkin <[EMAIL PROTECTED]> writes: John> On Feb 7, A. M. Varon wrote >> It seems that shell scripts i have made in my debian >> distrib. doesn't run. you need to put ./ in front in order for >> it to execute. John> Bash will only execute programs which

Re: running script files.

1997-03-06 Thread John T. Larkin
On Feb 7, A. M. Varon wrote > It seems that shell scripts i have made in my debian distrib. doesn't run. > you need to put ./ in front in order for it to execute. Bash will only execute programs which are specified in your path (to see what your path is, type "echo $PATH"). If "." is not in your

Re: running script files.

1997-03-06 Thread Scott Stanley
On Thu, 7 Feb 2036, A. M. Varon wrote: > Hi to all, > > It seems that shell scripts i have made in my debian distrib. doesn't run. > you need to put ./ in front in order for it to execute. > > i have chmod the script it to be executable, my bash shell is in > /etc/shells, and my first line in my

running script files.

1997-03-06 Thread A. M. Varon
Hi to all, It seems that shell scripts i have made in my debian distrib. doesn't run. you need to put ./ in front in order for it to execute. i have chmod the script it to be executable, my bash shell is in /etc/shells, and my first line in my shell script is #!/bin/bash. what seems to be the pr