# 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 }