gpt4 book ai didi

macos - 使用并行和 mutool 拆分多个 PDF 文件

转载 作者:行者123 更新时间:2023-12-04 08:42:11 25 4
gpt4 key购买 nike

有一个命令叫做 mutool比启用此调用 mutool poster -y 2 垂直拆分 PDF 文件.我想在目录的每个 PDF 文件上运行它。
我试过parallel 'mutool poster -y 2' ::: *.pdf ,尽管这不起作用,因为我只得到一个 PDF 文件。如果可能的话,我想处理每个文件。
我怎样才能做到这一点?如果无法使用 GNU 并行,还有其他方法吗?

最佳答案

mutool输出文件的名称,否则将使用占位符名称 out.pdf (它覆盖):

parallel 'mutool poster -y 2 {} {.}_out.pdf' ::: *.pdf
mutool 海报命令概要: mutool poster [options] input.pdf [output.pdf] .在输入文件名之后,可以给出输出文件名。 parallel用输入替换大括号,如文档中所述:

If command or the following arguments contain replacement strings (such as {}) every instance will be substituted with the input.


上面使用的两种替换形式的描述(还有很多其他形式):

{} Input line. This replacement string will be replaced by a full line read from the input source.


{.} Input line without extension. This replacement string will be replaced by the input with the extension removed.

关于macos - 使用并行和 mutool 拆分多个 PDF 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64508857/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com