我怎么能在脚本中作为不同的用户sudo

时间:2013-06-27 09:00:51

标签: unix sudo

目前我使用userid“bob”登录unix服务器。但我想在脚本中将sudo作为不同的用户(masteruser)。

我目前的代码是

回显密码| sudo -S masteruser bash

在上面的行中,密码是我的密码,而masteruser是我要连接的用户。 但执行该行我收到错误“sudo:masteruser:command not found”

你可以帮我解决一下。

1 个答案:

答案 0 :(得分:0)

echo password | su masteruser -c "echo this is the command you wish to run as masteruser"