自动化中的 Mac osx 终端命令
我需要创建一个自动化,它将文件作为输入并使用它们的位置字符串作为脚本的输入变量。我还需要它在运行脚本之前询问一个字符串。我该怎么做呢?
我要执行的命令行代码:
convert (file-location) -page '(string)' (file-location)
提前致谢!
I need to create an automation that takes files as inputs and uses their location string as an input variable to a script. I also need it ask for a string before running the script. How would I go about doing this?
The command line code I want to execute:
convert (file-location) -page '(string)' (file-location)
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个怎么样?
您一次使用一个文件名调用此脚本,对于该文件,它会要求您提供要使用的字符串。您也可以重写它以循环一堆文件。
How about this?
You invoke this script with one file name at a time, for that file it asks you for the string to be used. You could rewrite this to loop over a bunch of files too.