自动化中的 Mac osx 终端命令

发布于 2024-12-08 23:21:49 字数 191 浏览 0 评论 0原文

我需要创建一个自动化,它将文件作为输入并使用它们的位置字符串作为脚本的输入变量。我还需要它在运行脚本之前询问一个字符串。我该怎么做呢?

我要执行的命令行代码:

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 技术交流群。

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

发布评论

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

评论(1

夢归不見 2024-12-15 23:21:49

这个怎么样?

#!/bin/bash 
if [ $# -ne 2 ]
then
    echo "Usage: $0 <path_to_input_file>"
fi

echo "Processing $1. Enter string: "
read a

convert $1 -page "$a" $1

您一次使用一个文件名调用此脚本,对于该文件,它会要求您提供要使用的字符串。您也可以重写它以循环一堆文件。

How about this?

#!/bin/bash 
if [ $# -ne 2 ]
then
    echo "Usage: $0 <path_to_input_file>"
fi

echo "Processing $1. Enter string: "
read a

convert $1 -page "$a" $1

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.

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