Skip to content

Instantly share code, notes, and snippets.

@jontelang
Created January 16, 2019 05:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jontelang/c6317bf14c527d2a89f1efd5d0558f73 to your computer and use it in GitHub Desktop.
Save jontelang/c6317bf14c527d2a89f1efd5d0558f73 to your computer and use it in GitHub Desktop.
current_dir=$(pwd);
echo "Current: $current_dir";
echo " ";
echo "1) Desktop";
echo "2) Tweaks";
echo "3) iOSApp";
echo "4) Scripts";
echo "5) KPI (XX)";
read -p "Choose: " -n 1 -r
case $REPLY in
1) cd ~/Desktop; echo;echo; ls;;
2) cd ~/Dropbox/Tweaks; echo;echo; ls;;
3) cd ~/Desktop/xxx/iOSApp; echo;echo; ls;;
4) cd ~/Dropbox/Projekt/Scripts; echo;echo; ls;;
5) cd ~/Desktop/yyy/KPI; echo;echo; ls;;
*) echo;ls;;
esac
echo " ";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment