我正在寻找批量压缩一些 pdf 的方法,使用其他地方概述的转换为/从 ps 技巧。我在 .zshrc 文件中定义了一个函数:
function pdfcompress() {
for f in "$1"; do
echo "compressing $1"
pdf2ps "$f" "$f".ps
ps2pdf -dPDFSETTINGS=/default "$f".ps "$f"
rm "$f".ps
done
}
我的理解是,我应该能够传递一个 pdf 列表,然后它会压缩它们。但是,发生了以下情况:
% ls | pdfcompress
compressing
Error: /undefinedfilename in --findlibfile--
Operand stack:
()
Execution stack:
%interp_exit .runexec2 --nostringval-- findlibfile --nostringval-- 2 %stopped_push --nostringval-- findlibfile
findlibfile false 1 %stopped_push findlibfile 1815 1 3 %oparray_pop findlibfile
Dictionary stack:
--dict:743/1123(ro)(G)-- --dict:0/20(G)-- --dict:85/200(L)--
Current allocation mode is local
GPL Ghostscript 10.04.0: Unrecoverable error, exit code 1
GPL Ghostscript 10.04.0: Device 'pdfwrite' requires an output file but no file was specified.
**** Unable to open the initial device, quitting.
由于某种原因,似乎没有一个文件名被传递。我也尝试过使用find . -iname "*.pdf" -exec pdfcompress
和管道到 的方法xargs pdfcompress
,但这些方法都不起作用,因为该函数不在环境中。其他时候,占位符变量似乎被解释为文字字符串。
我已经尝试让它以某种形式工作了一个多小时,但没有成功。有什么建议吗?
我有一个想要维护的 pdf 文件夹结构,因此如果可能的话,在目录内递归工作的解决方案将是最好的。
谢谢你!