expect 普通用户自动输入密码到root下,执行命令
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了expect 普通用户自动输入密码到root下,执行命令相关的知识,希望对你有一定的参考价值。
案例:当前服务器取消了直接使用root登录服务器,只能使用普通用户先登录,然后再su - root 执行root下的命令。shell脚本如下:
#!/usr/bin/expect -f
set password {root_password}
spawn su - root
expect "密码:"
send "$password\r"
#send "sh ceshi.sh > temp.log &\r"
#send "timeout 120 tail -f temp.log\r"
send "pwd\r"
send "exit\r"
interactexit 0
以上是关于expect 普通用户自动输入密码到root下,执行命令的主要内容,如果未能解决你的问题,请参考以下文章