将多个参数从 Applescript 传递到终端命令脚本

Passing Multiple Parameters from Applescript to Terminal Command Script

我一直在尝试弄清楚如何将多个参数从 Applescript 传递到终端命令脚本。例如,当 运行 一个终端命令文件时,您可以像这样以编程方式接收参数:

#!/bin/bash

var=

var=

我一直在使用的 Applescript 代码如下,供参考:

tell application "System Events" to set app_directory to POSIX path of (container of (path to me))

set thisFile to "Dev"

set testTarget to "/Users/lab/Desktop/TestTarget/"

do shell script "/Users/lab/Desktop/TempRoot/mycommand.command " & thisFile & testTarget with administrator privileges

我认为我出错的地方是第二个参数的输入。当我只有一个参数时,它运行得很好:

do shell script "/path/to/command/mycommand.command" &var with administrative privileges

我很好奇传递第二个参数的正确语法是什么。如果有人有任何建议,请告诉我!另外,如果您需要更多信息,我很乐意提供!

您只需在参数之间添加一个 space。现在,thisFiletestTarget 之间没有添加 space。您的命令如下所示:

/Users/lab/Desktop/TempRoot/mycommand.command Dev/Users/lab/Desktop/TestTarget/

将您的 shell 脚本行更改为:

do shell script "/Users/lab/Desktop/TempRoot/mycommand.command " & thisFile & space & testTarget with administrator privileges

我发现在构建脚本时有帮助的一件事是确保我的 shell 命令在 运行 命令之前是正确的。因此,与其直接构建它,不如将命令存储在一个变量中并记录下来。稍后,将日志记录语句替换为 do shell script 命令。

set shellScript to "/Users/lab/Desktop/TempRoot/mycommand.command " & thisFile & space & testTarget with administrator privileges
log shellScript
-- do shell script shellScript