Questions tagged «expect»

1
超时在期望脚本中不起作用
我创建了以下expect脚本以自动登录到VPN: #!/usr/bin/expect set PASS [lindex $argv 0] set timeout 10 spawn vpnc expect : {send $PASS\r} expect eof 但是,当我给出错误的密码参数时,预期的10秒不会发生。 为什么没有发生10秒超时?
1 linux  expect 

1
Bash脚本中的SSH + Sudo + Expect:在远程机器中使用sudo运行命令
我试图使用脚本自动部署一些.deb包。我想sudo dpkg -i $myDeb.deb在我可以使用ssh访问的远程机器列表中执行。 我试图在bash脚本中使用'expect'自动执行命令,但我显然做错了,因为我得到了许多不同的错误(取决于我把引号放在哪里,基本上) 这是我的功能(将通过以下方式调用:_remoteInstallation "myPackage115.deb" "192.168.1.55"。我知道在远程机器中,.deb将位于$ HOME / Documents /中: function _remoteInstallation(){ local retval=1 local debToInstall=$(basename "$1") local remoteMachine="$2" spawned=$(expect -d -c " set timeout 1800 spawn "/usr/bin/ssh -t borrajax@$remoteMachine /usr/bin/sudo /usr/bin/dpkg -i /home/borrajax/Documents/$debToInstall"' expect { \"Are you sure you want to continue connecting\" { send \"yes\r\"; exp_continue …
ubuntu  bash  ssh  sudo  expect 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.