scripts/ssh.sh
2025-03-26 21:37:21 +01:00

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