问题描述
- linux expect脚本问题
-
1 #!/usr/bin/expect -f2 spawn ssh root@192.168.1.121
3 expect "*password:"
4 send "test1234r"
5 expect "*#"
6 send "mkdir ./tsr"
7 send "file tsr"
8 interact
实现登录到远端机器然后新建一个目录 查看这个目录的类型
为什么去掉第五行就不能正确执行了呢?而第六行和第七行就可以连续执行?
expect和send到底是怎么样的一个关系?
spawn mkdir ./test 这样无交互的指令是不是无法用expect编程 我试了下就执行了这句 尽管我指定了 expect “*$“ 也没有继续执行接下去的send 语句
求教!
解决方案
http://blog.csdn.net/zhuying_linux/article/details/6902135
时间: 2024-12-27 11:08:45