Is it possible to find out the full path to the script that is currently executing in Korn shell?
i.e. if my script is in /opt/scripts/myscript.ksh, can I programmatically inside that script discover '/opt/scripts/myscript.ksh'?
Thanks,
|
1
|
|
|
|
|
|
## __SCRIPTNAME - name of the script without the path ## typeset -r __SCRIPTNAME="${0##*/}"
|
||
|
|
|
Try which command.
will give you the full qualified name of the script along with its absolute path |
||
|
|
|
|
This works also, although it won't give the "true" path if it's a link. It's simpler, but less exact.
|
||
|
|
|
|
How the script was called is stored in the variable $0. You can use
|
||||||||
|