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用法举例的主要内容,如果未能解决你的问题,请参考以下文章