使用Inkscape在终端中进行批量转换

时间:2017-06-30 14:36:10

标签: svg terminal batch-processing inkscape

我尝试使用inkscape将svg文件批量转换为pdf。

以下命令一个接一个地完美运行:

inkscape -f /dir/to/input.svg -A /dir/to/output.pdf

当我尝试以下操作时:

for i in *.svg; do inkscape -f "${i}" -A "${i}.pdf";done

我收到此错误:

** (inkscape-bin:6844): WARNING **: Can't open file: 2200.svg (doesn't exist)

任何帮助将不胜感激!

0 个答案:

没有答案