#Inkscape has a batch mode, and it can save lives !
Export all your Inkscape files to 300 DPI PNGs :
for i in *.svg;
do
inkscape $i --export-dpi=300 --export-png=${i%.*}.png;
done
Wanna generate PS level 2 PDF with texts as pathes ?
for i in *.svg;
do
inkscape $i --export-text-to-path --export-ps-level=2 --export-pdf=${i%.*}.pdf;
done
#Inkscape #CLI #GNU_Linux #Linux #Webdev #Web #graphism #SVG #PNG #PDF #Vectorial #Bitmap