vote up 2 vote down star
1

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,

flag

64% accept rate

4 Answers

vote up 4 vote down check

## __SCRIPTNAME - name of the script without the path ## typeset -r __SCRIPTNAME="${0##*/}"

## __SCRIPTDIR - path of the script (as entered by the user!)
##
__SCRIPTDIR="${0%/*}"

## __REAL_SCRIPTDIR - path of the script (real path, maybe a link)
##
__REAL_SCRIPTDIR=$( cd -P -- "$(dirname -- "$(command -v -- "$0")")" && pwd -P )
link|flag
thanks @Marnix, works a treat – Brabster May 4 at 12:03
vote up 0 vote down

Try which command.

which scriptname

will give you the full qualified name of the script along with its absolute path

link|flag
vote up 0 vote down

This works also, although it won't give the "true" path if it's a link. It's simpler, but less exact.

SCRIPT_PATH="$(whence ${0})"
link|flag
vote up 3 vote down

How the script was called is stored in the variable $0. You can use readlink to get the absolute file name:

readlink -f "$0"
link|flag
thanks for the $0 tip, what's readlink? doesn't seem to be on my system – Brabster Apr 17 at 11:57
readlink is a simple app in the gnu coreutils package – soulmerge Apr 17 at 12:06
Hmmm need something totally within ksh, no dependencies. Thanks though – Brabster Apr 17 at 12:35
I'm afraid that won't be possible - unless ksh has a possibility I am not aware of for interacting with the file system. What's your OS? – soulmerge Apr 17 at 13:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.