Skip to content

Instantly share code, notes, and snippets.

@snipsnipsnip
Last active May 30, 2020 01:50
Show Gist options
  • Save snipsnipsnip/347461 to your computer and use it in GitHub Desktop.
Save snipsnipsnip/347461 to your computer and use it in GitHub Desktop.
cd to previous directory / next directory
alias pd='cd "../$(ls .. | grep -B1 $(basename $(pwd)) | head -1)"'
alias nd='cd "../$(ls .. | grep -A1 $(basename $(pwd)) | tail -1)"'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment