Files
dotfiles/scripte/connect.sh
2025-03-30 21:13:51 +02:00

21 lines
369 B
Bash

#!/bin/sh
PS3='Bitte wählen: '
options=("SSH Helix" "SSH Pi-Hole" "Quit")
select opt in "${options[@]}"
do
case $opt in
"SSH Helix")
ssh helix.lan
;;
"SSH Pi-Hole")
ssh pi@raspberry.lan
;;
"Quit")
break
;;
*) echo "Ungültige Auswahl $REPLY";;
esac
done