to add to that and make it as clear as possible... if you are running a script in the current directory, you use "./<name>".
If you are not in the same directory as the script, just enter the name of the script.. without "./"
Example:
Code:
$ pwd
/home/halo14
$ ./script1
<script runs>
$ cd /
$ pwd
/
$ /home/halo14/script1
<script runs>
I hope that was relatively undertstandable?
