目前我使用userid“bob”登录unix服务器。但我想在脚本中将sudo作为不同的用户(masteruser)。
我目前的代码是
回显密码| sudo -S masteruser bash
在上面的行中,密码是我的密码,而masteruser是我要连接的用户。 但执行该行我收到错误“sudo:masteruser:command not found”
你可以帮我解决一下。
答案 0 :(得分:0)
echo password | su masteruser -c "echo this is the command you wish to run as masteruser"