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