我理解以这种方式使用ssh的所有安全风险,但我现在需要的是一些能够登录target
服务器并执行foo命令的行(bash)shell脚本并返回源主机,如:
while true
do
ssh target foo # Here I get the prompt for a password which
# I would like to give non-interactively
sleep 1
done
我不希望使用基于ssh密钥的身份验证,因为我真正需要的是每秒模拟一次(或左右)交互式登录过程(但不是交互式!)。