On Mon, Jan 31, 2011 at 12:32 PM, Mike Wright mike.wright@mailinator.com wrote:
s there a bash command that tells an executing script what *its* path is? Not the path where the user is but where the script is.
$ cat ./test.sh #!/bin/bash
echo $0 is the script echo `dirname $0` is the script location
exit $?
HTH