0

• 下面是通过 AppleScript 执行的脚本:

bash-3.2$ cd /Users/jack/Desktop/
bash-3.2$ ls -l | grep static
-rwxrwxrwx   1 jack  admin      65  5 May 08:10 static-routes.sh
bash-3.2$ cat static-routes.sh 
#!/bin/bash
sudo route -n add -net 192.168.3.0/24 172.16.254.134
~                                                         

• AppleScript 包含以下内容:

do shell script "~/Desktop/static-routes.sh"

• 从AppleScript 中执行脚本时,通过单击“运行”按钮,弹出窗口说:

脚本错误 sudo:需要终端才能读取密码;使用 -S 选项从标准输入读取或配置 askpass 助手 在此处输入图像描述

• 从不带 的控制台执行脚本时sudo,不会出现其他提示:

bash-3.2$: Desktop jack$ ./static-routes.sh 
add net 192.168.3.0: gateway 172.16.254.134

• 以下是摘录/etc/sudoers

bash-3.2$ sudo visudo
# root and users in group wheel can run anything on any machine as any user
root            ALL = (ALL) ALL
%admin          ALL = (ALL) ALL
jack ALL = (ALL) NOPASSWD: /Users/jack/Desktop/static-routes.sh

## Read drop-in files from /private/etc/sudoers.d
## (the '#' here does not indicate a comment)
#includedir /private/etc/sudoers.d
Defaults timestamp_timeout=60

问题:

• 为什么会出现此错误,因为我已将脚本显式添加到 sudoers 文件中,以便通过 sudo 无需密码提示即可执行?

• AppleScript 使用哪个用户来执行脚本?是否可以修改它?

4

1 回答 1

1

要运行需要 AppleScript 权限的命令,您需要通过添加administrator privileges密钥来指定它,如下所示:

-- this will presented a standard authorization dialog
do shell script "~/Desktop/static-routes.sh" with administrator privileges

-- this will specifies an administrator account and password
-- (though note, the password will be visible as plain text in the script)
do shell script "~/Desktop/static-routes.sh" with administrator privileges user name XXXX password YYYY

您不应该在使用sudo的同时使用with administrator privileges;这是不必要的,并且会造成安全漏洞。但是,由于您已经更改了 sudoers 文件,您可以试试这个:

do shell script "sudo ~/Desktop/static-routes.sh"

像这样放在sudo前面可能会提示 AppleScript 做正确的事情。

有关详细信息,请参阅技术说明 2065

于 2020-05-05T15:29:07.657 回答