将 bash 中的文件名传递给自动化操作
Pass filename from bash to automator action
如何将变量(在图像上为 rawtiff.tiff)从 bash 传递到进一步的自动化操作?
查看 OP 中的 linked image 并查看 Description Compress Images in PDF Documents [= Automator 中的 18=]action,它 说 :
This action will compress the images within the passed PDF documents.
因此,您需要将要处理的 PDF 文档 的 完全限定路径名 传递给它。因此,作为 运行 Shell Script action 中的最后一行,您可以使用 echo
命令,例如:
echo "/path/to/document.pdf"
如何将变量(在图像上为 rawtiff.tiff)从 bash 传递到进一步的自动化操作?
查看 OP 中的 linked image 并查看 Description Compress Images in PDF Documents [= Automator 中的 18=]action,它 说 :
This action will compress the images within the passed PDF documents.
因此,您需要将要处理的 PDF 文档 的 完全限定路径名 传递给它。因此,作为 运行 Shell Script action 中的最后一行,您可以使用 echo
命令,例如:
echo "/path/to/document.pdf"