Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2012
1,062
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. #!/bin/bash
  2. while true; do
  3. echo "Please choose an option"
  4. echo "Do a fresh install (1)"
  5. echo "Remove all mods (2)"
  6. echo "Back up your world(3)"
  7. echo "Restore your world(4)"
  8. read -p "Exit (5)" yn
  9. case $yn in
  10. [1]* ) bash ./fresh.sh;;
  11. [2]* ) bash ./modremove.sh;;
  12. [3]* ) bash ./worldbackup.sh;;
  13. [4]* ) bash ./worldrestore.sh;;
  14. [5]* ) echo "The installer will now quit";sleep 2; exit;;
  15. * ) echo; echo "Please choose one"; echo;;
  16. esac
  17. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement