expect用法举例

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

posted @ 2019-03-08 15:02  as007012  阅读(380)  评论(0编辑  收藏  举报