Skip to content

Instantly share code, notes, and snippets.

@emerson-pereira
Created April 22, 2019 15:33
Show Gist options
  • Save emerson-pereira/334a99ae45adac573e3610cea58b3398 to your computer and use it in GitHub Desktop.
Save emerson-pereira/334a99ae45adac573e3610cea58b3398 to your computer and use it in GitHub Desktop.
alias list='f() {
cd /Users/emerson/Projects/$1;
printf "Please select folder:\n"
select d in */; do test -n "$d" && break; echo ">>> Invalid Selection"; done
cd "$d"
};f'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment