我正在使用应用程序自动文件接收设置为变量的文件file
,然后使用 Ask For Text 设置一个名为name
.
我需要在两个地方使用它:
- 一个shell脚本
- 在咆哮通知中
我尝试了很多组合,但我无法让变量在其中任何一个中起作用。什么是正确的语法?
我正在使用应用程序自动文件接收设置为变量的文件file
,然后使用 Ask For Text 设置一个名为name
.
我需要在两个地方使用它:
我尝试了很多组合,但我无法让变量在其中任何一个中起作用。什么是正确的语法?
尝试将其添加到您的自动化工作流程中:
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
您不需要键入任何脚本。如果您转到 Growl 应用程序,请右键单击,显示内容,Contents--->Library-> Automator
双击该文件,Automator 将添加咆哮动作。享受 ;)