shell脚本中的Automator变量

发布于 2024-10-11 05:41:46 字数 39 浏览 5 评论 0原文

是否可以将 Automator 变量传递到 shell 脚本中?

Is it possible to pass an Automator variable into a shell script?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

野却迷人 2024-10-18 05:41:46

补充 @Ned Deily 的答案:(

从 OS X 10.9.2 开始编写,从 OSX 10.10 开始仍然有效

通常不需要在 Automator 中创建和使用显式变量(使用设置变量值获取变量值 操作)。

上一个操作的输出会自动传递给 Run Shell Script 操作。

不过,默认情况下,数据是通过 stdin 传递的。

如果您希望它作为参数传递($1$2,... - 也可以通过$@作为数组访问code>) 相反,从右侧的 传递输入: 列表中选择作为参数,如下所示:

在此处输入图像描述

在此示例中,选定的 Finder 项目将作为 POSIX 样式路径 传递到 shell 脚本。


在循环中使用 read -r)也可以:

也就是说,让 shell 脚本通过 stdin 处理数据( sstatic.net/8oDWP.png" alt="在此处输入图像描述">

To complement @Ned Deily's answer:

(Written as of OS X 10.9.2, still current as of OSX 10.10)

It is often not necessary to create and use explicit variables in Automator (using the Set Value of Variable and Get Value of Variable actions).

The previous action's output is automatically passed to a Run Shell Script action.

By default, the data is passed via stdin, however.

If you want it passed as arguments ($1, $2, ... - also accessible as an array via $@) instead, select as arguments from the Pass input: list on the right, as illustrated here:

enter image description here

In this example, the selected Finder items are passed as POSIX-style paths to the shell script.


That said, having a shell script process the data via stdin (using read -r in a loop) works, too:

enter image description here

简单气质女生网名 2024-10-18 05:41:46
  1. 拖放drop 将
  2. 路径存储在 filename 变量中
  3. 在下一个变量中输入值的提示窗口
  4. get filename 变量
  5. 将提示值存储在 rename_to
  6. $1 – rename_to 值,$2 – 文件名

在此处输入图像描述

  1. Drag & drop
  2. Store path in filename variable
  3. Prompt window for input value in next variable
  4. get filename variable
  5. Store prompt value in rename_to
  6. $1 – rename_to value, $2 – filename value

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文