quick ssh connect

This commit is contained in:
2025-03-30 21:13:51 +02:00
parent 2613314ed7
commit f5ba47c13e

20
scripte/connect.sh Normal file
View File

@@ -0,0 +1,20 @@
#!/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