25 lines
416 B
Bash
Executable File
25 lines
416 B
Bash
Executable File
#!/bin/bash
|
|
PS3="What server do you want to SSH to?: "
|
|
|
|
select opt in Nextcloud Wireguard Jellyfin quit; do
|
|
|
|
case $opt in
|
|
Nextcloud)
|
|
ssh nextcloud@192.168.1.205
|
|
;;
|
|
Wireguard)
|
|
ssh wireguard@192.168.1.202
|
|
;;
|
|
Jellyfin)
|
|
ssh jellyfin@192.168.1.225
|
|
;;
|
|
quit)
|
|
echo "Exiting script"
|
|
exit
|
|
;;
|
|
*)
|
|
echo "Invalid option $REPLY"
|
|
;;
|
|
esac
|
|
done
|