Created
February 3, 2012 15:20
-
-
Save olegch/1730673 to your computer and use it in GitHub Desktop.
Full directory name of the script no matter where it is being called from
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This code is originally from http://stackoverflow.com/questions/59895/can-a-bash-script-tell-what-directory-its-stored-in | |
# It is a useful one-liner which will give you the full directory name of the script no matter where it is being called from | |
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
# Or, to get the dereferenced path (all directory symlinks resolved), do this: | |
DIR="$( cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
# These will work as long as the last component of the path used to find the script is not a symlink (directory links are OK). | |
# If you want to also resolve any links to the script itself, you need a multi-line solution: | |
SOURCE="${BASH_SOURCE[0]}" | |
while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done | |
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment