expect 切换用户后自动执行shell命令
Posted renshaoping
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了expect 切换用户后自动执行shell命令相关的知识,希望对你有一定的参考价值。
#!/usr/bin/expect -f
set tvgwRecordChannel [lindex $argv 0]
set tvldFlag [lindex $argv 1]
spawn su
expect "Password: "
send "hello123\r"
expect "]#"
send "./cmm_tvgw_config.sh $tvgwRecordChannel $tvldFlag\r"
expect "]#"
send "/opt/fonsview/NE/cmm/bin/restart.sh\r"
expect eof
以上是关于expect 切换用户后自动执行shell命令的主要内容,如果未能解决你的问题,请参考以下文章