如何快速选择并登录我需要通过ssh访问的多个主机?我正在构建一个类似下面的
shell脚本,它使用对话框从命令行显示主机菜单,但我很好奇是否有更好的方法.
#!/bin/dash tempfile=`tempfile 2>/dev/null` || tempfile=/tmp/test$$ trap "rm -f $tempfile" 0 1 2 5 15 while [ 1 ] do dialog --menu "Select Host" 0 0 0 \ "hostname1" "Host description 1" \ "hostname2" "Host description 2" \ "hostname3" "Host description 3" 2> $tempfile HOSTNAME=`cat $tempfile` if [ "x" = "x$HOSTNAME" ]; then break fi ssh $HOSTNAME done