2

我正在使用应用程序自动文件接收设置为变量的文件file,然后使用 Ask For Text 设置一个名为name.

我需要在两个地方使用它:

  1. 一个shell脚本
  2. 在咆哮通知中

我尝试了很多组合,但我无法让变量在其中任何一个中起作用。什么是正确的语法?

4

2 回答 2

0

尝试将其添加到您的自动化工作流程中:

on run {input, parameters}
    -- Get name from automator
    tell application "Finder" to set theName to name of file input

    -- pass name into shell script and get variable back
    set xxx to do shell script "echo " & theName

    display dialog xxx
end run

在此处输入图像描述

于 2012-08-06T04:37:07.010 回答
-1

您不需要键入任何脚本。如果您转到 Growl 应用程序,请右键单击,显示内容,Contents--->Library-> Automator

双击该文件,Automator 将添加咆哮动作。享受 ;)

于 2012-08-21T17:04:30.167 回答