yum -y install expect
login as normal user:
vi su.exp
#!/usr/bin/expect
set timeout 30
spawn su -
expect "Password:"
send "root-pass\r"
interact
chmod +x su.exp
./su.exp
时间: 2025-01-12 06:28:37
yum -y install expect
login as normal user:
vi su.exp
#!/usr/bin/expect
set timeout 30
spawn su -
expect "Password:"
send "root-pass\r"
interact
chmod +x su.exp
./su.exp