Skip to content

Instantly share code, notes, and snippets.

@jfarmer
Created December 23, 2011 20:42
Show Gist options
  • Save jfarmer/1515311 to your computer and use it in GitHub Desktop.
Save jfarmer/1515311 to your computer and use it in GitHub Desktop.
cd out of /private on OS X
# Get rid of /private ugh
if [[ $PWD =~ ^/private ]];then
cd ${PWD#*/private}
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment