Skip to content

Instantly share code, notes, and snippets.

@xcv58
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xcv58/ceba2a4f4bb8729d2e58 to your computer and use it in GitHub Desktop.
Save xcv58/ceba2a4f4bb8729d2e58 to your computer and use it in GitHub Desktop.
Show Path of Shell Script File itself
SCRIPT_FILE=`which $0`
if [ -L $SCRIPT_FILE ]; then
SCRIPT_FILE=`readlink $SCRIPT_FILE`
fi
SCRIPT_PATH=`dirname $SCRIPT_FILE`
SCRIPT_FILE=`basename $SCRIPT_FILE`
echo Path: $SCRIPT_PATH
echo Filename: $SCRIPT_FILE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment