Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. #!/bin/bash
  2. # Bazinga! Created this script to make one single launcher for all Warzone2100 builds
  3. clear
  4.  
  5. echo -e "\n Warzone2100 - Strategy by Design \n
  6.  
  7. 1) 2.3 SVN Branch \n \
  8. 2) Berg's Experimental \n \
  9. 3) Berg's Original \n \
  10. 4) 2.3.5 \n \
  11. 5) Git Master \n \
  12. 6) 3.0 Beta 1
  13. "
  14.  
  15. echo -n Select the build that you want to play:
  16.  
  17. read choice
  18.  
  19.  
  20. case $choice in
  21. 1) /mnt/my-data/warzone-build-directory/warzone-2.3-branch/src/warzone2100 ;;
  22. 2) /mnt/my-data/warzone-build-directory/warzone-berg-experimental/src/warzone2100 ;;
  23. 3) /mnt/my-data/warzone-build-directory/warzone-berg-build/src/warzone2100 ;;
  24. 4) /mnt/my-data/warzone-build-directory/warzone2100-2.3.5/src/warzone2100 ;;
  25. 5) /mnt/my-data/warzone-build-directory/warzone-master/mainline/src/warzone2100 ;;
  26. 6) /mnt/my-data/warzone-build-directory/warzone2100-3.0_beta1/src/warzone2100 ;;
  27. *) echo "DUDE! Can't you read!! I don't have that build."
  28. esac
  29.  
  30.  
  31. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement