是否可以在一个 exec 命令中运行多个命令?我需要从 SVG 文件中获取一些图像,但这个变体太慢了:
exec('inkscape file.svg --export-id=g123 --export-png=img1.png');
exec('inkscape file.svg --export-id=g124 --export-png=img2.png');
exec('inkscape file.svg --export-id=g125 --export-png=img3.png');
所以我需要在一行中做所有事情。我已经尝试过这个:
exec('inkscape file.svg --export-id=g125 --export-png=img3.png inkscape file.svg --export-id=g123 --export-png=img1.png');
但这只会提取最后一张图像。