Skip to content

Instantly share code, notes, and snippets.

@Mechazawa
Created June 27, 2017 13:19
Show Gist options
  • Save Mechazawa/22c11810f0d10592938eb08ddab1ec73 to your computer and use it in GitHub Desktop.
Save Mechazawa/22c11810f0d10592938eb08ddab1ec73 to your computer and use it in GitHub Desktop.
cd back to project directory
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