10 lines
202 B
Bash
Executable file
10 lines
202 B
Bash
Executable file
#!/bin/bash
|
|
for i in *.svg
|
|
do
|
|
echo "Transform Image: $i"
|
|
inkscape \
|
|
--actions="export-filename:export/$i.png; export-do;"\
|
|
--export-dpi 300 \
|
|
--export-background white \
|
|
$i
|
|
done
|