expect用法举例

Posted as007012

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了expect用法举例相关的知识,希望对你有一定的参考价值。

1     

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

 

2 文件形式:

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

以上是关于expect用法举例的主要内容,如果未能解决你的问题,请参考以下文章

expect 用法

Linux expect介绍和用法

Linux expect 用法

expect的用法和实现自动化脚本

shell expect spawnlinux expect 用法小记 看着舒服点

shell脚本之cut,sort,uniq,tr工具用法,Here Document和Expect用法