change.sh 926 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #!/bin/bash
  2. echo -e ""
  3. echo -e "======================================"
  4. echo -e ""
  5. echo -e " $blue [1] Change Port Stunnel4"
  6. echo -e " $blue [2] Change Port OpenVPN"
  7. echo -e " $blue [3] Change Port Wireguard"
  8. echo -e " $blue [4] Change Port Vmess"
  9. echo -e " $blue [5] Change Port Vless"
  10. echo -e " $blue [6] Change Port Trojan"
  11. echo -e " $blue [7] Change Port Squid"
  12. echo -e " $blue [8] Change Port SSTP"
  13. echo -e " $blue [9] Change Port XRAY"
  14. echo -e " $blue [10] Change Port Trojan GO"
  15. echo -e " $blue [11]$NC $yell BACK TO MENU$NC"
  16. echo -e "======================================"
  17. echo -e ""
  18. read -p " Select From Options [1-10 or x] : " port
  19. echo -e ""
  20. case $port in
  21. 1)
  22. port-ssl
  23. ;;
  24. 2)
  25. port-ovpn
  26. ;;
  27. 3)
  28. port-wg
  29. ;;
  30. 4)
  31. port-ws
  32. ;;
  33. 5)
  34. port-vless
  35. ;;
  36. 6)
  37. port-tr
  38. ;;
  39. 7)
  40. port-squid
  41. ;;
  42. 8)
  43. port-sstp
  44. ;;
  45. 9)
  46. menu-xx
  47. ;;
  48. 10)
  49. port-trgo
  50. ;;
  51. 11)
  52. clear
  53. menu
  54. ;;
  55. *)
  56. echo "Please enter an correct number"
  57. ;;
  58. esac