Created
December 23, 2011 20:42
-
-
Save jfarmer/1515311 to your computer and use it in GitHub Desktop.
cd out of /private on OS X
This file contains hidden or 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
# 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