mensamap/svg2png.sh
2019-11-13 16:03:53 +01:00

9 lines
189 B
Bash
Executable File

for file in "$@"; do
inkscape \
-z \
-f "$file" \
-e "`echo "$file" | sed 's/\(\.svg\)\{0,1\}$/\.png/'`" \
-a 228:598.333:492:752 \
-w 1920
done