Created
January 16, 2019 05:11
-
-
Save jontelang/c6317bf14c527d2a89f1efd5d0558f73 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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