15 lines
275 B
Bash
Executable File
15 lines
275 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$1" == "" ]; then
|
|
echo "Missing size"
|
|
exit 1
|
|
fi
|
|
|
|
cd "$(dirname "$0")/.." || exit 1
|
|
|
|
inkscape Turnverein1883BildstockLogo.svg \
|
|
--export-type=png \
|
|
--export-filename=./png/Turnverein1883BildstockLogo$1.png \
|
|
--export-dpi=300 \
|
|
--export-width=$1
|