7 lines
82 B
Bash
7 lines
82 B
Bash
|
#!/bin/bash
|
||
|
for f in *.svg
|
||
|
do
|
||
|
inkscape -z -e "export/$f.png" \
|
||
|
"$f"
|
||
|
done
|