Created
June 27, 2017 13:19
-
-
Save Mechazawa/22c11810f0d10592938eb08ddab1ec73 to your computer and use it in GitHub Desktop.
cd back to project directory
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
function cdp | |
set old (pwd) | |
while not test -e .env -o -e .idea -o -e .git | |
cd .. | |
if [ '/' = (pwd) ] | |
cd $old | |
echo 'Could not descend to a project directory' | |
return 1 | |
end | |
end | |
return 0 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment