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

SHELL脚本切换用户需输入密码

linux spawn命令

如何通过写shell自动切换到root 用户

linux自动巡检脚本之用户切换后的命令执行

deepin自动提升普通用户权限——expect

Shell脚本中实现切换用户并执行命令操作