Advertisement
Guest User

Untitled

a guest
Sep 12th, 2015
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. #!/bin/bash
  2. clear
  3. cat <<EOF
  4. _____ _____ __ __ ___ ___ ___ ____ __ __
  5. / ___// ___/| | || | | / _]| \ | | |
  6. ( \_( \_ | | || _ _ | / [_ | _ || | |
  7. \__ |\__ || _ || \_/ || _]| | || | |
  8. / \ |/ \ || | || | || [_ | | || : |
  9. \ |\ || | || | || || | || |
  10. \___| \___||__|__||___|___||_____||__|__| \__,_| v.1.0
  11. _____ _____ _____ _____ _____ _____ _____ _____
  12. | || || || || || || || |
  13. |_____||_____||_____||_____||_____||_____||_____||_____|
  14.  
  15. 1) swain.pw - Swain's development box
  16. 2) cloud.swain.pw - Swain's Cloud backup server
  17. 3) box.swain.pw - Media server
  18. 4) vpn.swain.pw - VPN server
  19. 5) dedi.swain.pw - Dedicated server
  20. EOF
  21. echo -n "Connect to > "
  22. read character
  23. case $character in
  24. 1 ) clear
  25. echo "connecting to swain.pw"
  26. ssh root@swain.pw
  27. ;;
  28. 2 ) clear
  29. echo "connecting to cloud.swain.pw"
  30. ssh root@cloud.swain.pw
  31. ;;
  32. 3 ) clear
  33. echo "connecting to box.swain.pw"
  34. ssh root@box.swain.pw
  35. ;;
  36. 4 ) clear
  37. echo "connecting to vpn.swain.pw"
  38. ssh root@vpn.swain.pw
  39. ;;
  40. 5 ) clear
  41. echo "connecting dedi.swain.pw"
  42. ssh root@dedi.swain.pw
  43. ;;
  44. * ) echo "You did not enter a valid server id"
  45. echo "between 1 and 4."
  46. esac
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement