Skip to content

Instantly share code, notes, and snippets.

@bpevs
Created February 13, 2019 16:38
Show Gist options
  • Save bpevs/cdda5fd82dd5ad09ff03b63318c3e32c to your computer and use it in GitHub Desktop.
Save bpevs/cdda5fd82dd5ad09ff03b63318c3e32c to your computer and use it in GitHub Desktop.
# https://johnnydecimal.com/
cjd() {
if [ $# -eq 0 ]; then
cd ~/Documents
elif [ $1 =~ ['.'] ]; then
cd ~/Documents/*/*/${1}*/
elif [ $1 =~ ['-'] ]; then
cd ~/Documents/${1}*/
else
cd ~/Documents/*/${1}*/
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment