码迷,mamicode.com
首页 > 其他好文 > 详细

expect用法举例

时间:2019-03-08 15:15:53      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:pass   tab   table   space   bsp   check   end   bin   su -   

1     

expect -c ‘
spawn su - oracle -s check_tablespace.sh
expect "Password:"
send "oracle\n\r"
expect "eof"
exit

 

2 文件形式:

#!/usr/bin/expect -f
spawn su - oracle -s check_tablespace.sh
expect "Password:"
send "oracle\n\r"
expect "eof"  #上面的子进程完了会返回eof字符串
exit

expect用法举例

标签:pass   tab   table   space   bsp   check   end   bin   su -   

原文地址:https://www.cnblogs.com/as007012/p/10495918.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!