Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sirkkalap/93c9a644eb660d4edea8 to your computer and use it in GitHub Desktop.
Save sirkkalap/93c9a644eb660d4edea8 to your computer and use it in GitHub Desktop.
BASEDIR allows running scripts without cd'ing into their folders first. With properly set basedir all local resources can be referenced without CWD being in the script folder.
#!/bin/sh
BASEDIR=$(cd "$(dirname "$0")"; pwd)
echo $BASEDIR
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment