9 lines
182 B
Bash
9 lines
182 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ "$#" -lt 2 ]; then
|
||
|
echo "Usage: $0 [SVG File] [height]"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
inkscape --export-type="png" --export-background-opacity=0 --export-height=$2 "$1"
|