写一个bat自动登录ssh的脚本
时间: 2023-03-07 12:44:35 浏览: 322
shell脚本实现ssh自动登录功能分享
答案:#!/bin/bash# 请输入你的用户名
read -p "Username: " username# 请输入你的密码
read -sp "Password: " password# 连接服务器
echo "Connecting..."
ssh "$username@example.com" -o PreferredAuthentications=password -o PubkeyAuthentication=no << EOF
$password
# 开始执行你的指令
# 例如:ls
EOF
阅读全文