Skip to content

Instantly share code, notes, and snippets.

@iCodeForBananas
Created April 10, 2016 18:41
Show Gist options
  • Select an option

  • Save iCodeForBananas/bac004d942524fadfdc269c64ea0817f to your computer and use it in GitHub Desktop.

Select an option

Save iCodeForBananas/bac004d942524fadfdc269c64ea0817f to your computer and use it in GitHub Desktop.
function m {
echo "Select an option:"
echo "1) Musicbed"
echo "2) Filmsupply"
echo "3) Ranger Steve"
echo "4) Empty Trash"
echo "[ENTER] to cancel"
read user_input
case $user_input in
1 ) cd ~/Code/musicbed;;
2 ) cd ~/Code/filmsupply;;
3 ) cd ~/Code/rangersteve;;
4 ) rm -rf ~/.Trash/*;;
esac
}
m
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment