Linux自动切换用户
一、创建sh文件
touch su_user.sh
二、下载脚本
yum install -y expect
三、脚本内容
#!/bin/bash
# This is our first script.
echo 'su user[root]!'
expect -c "
spawn su - root
expect \":\"
send \"root\r\"
interact
"
echo "ok!"
一、创建sh文件
touch su_user.sh
二、下载脚本
yum install -y expect
三、脚本内容
#!/bin/bash
# This is our first script.
echo 'su user[root]!'
expect -c "
spawn su - root
expect \":\"
send \"root\r\"
interact
"
echo "ok!"