2
spawn ssh -fnqX username@192.168.1.100 google-chrome 
expect -re "password"  
send "passwd\r"
interact (?)

如何在整个脚本关闭时继续运行 chrome。所以我可以在同一个外壳中做另一件事吗?非常感谢您。

新增。
spawn ssh -fnqX $log_name@192.168.1.100 firefox  
expect -re "password"  
send "$passwd_v100\r"
expect -re "failed to create drawable| ~"
send eof\r

实际上,我后来写了上面的代码,它运行正常。好吧,我不知道代码如何send eof\r使脚本运行良好。我觉得很奇怪。顺便说一句,firefox 调用了字符串“failed to create drawable”。

4

1 回答 1

0

Using nohup maybe?

于 2012-05-04T14:08:09.877 回答