首页 > 代码库 > linux shell 切换到ROOT用户

linux shell 切换到ROOT用户

#!/bin/bash 
expect -c "
        set timeout 1000
        spawn /bin/su - root 
        expect \":"
        send \"12360.cn\n\"
        interact 
"

linux shell 切换到ROOT用户