You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
324 B
Bash
13 lines
324 B
Bash
1 year ago
|
#!/bin/sh
|
||
|
|
||
|
set -eux
|
||
|
|
||
|
while IFS=: read fn layers viewbox; do
|
||
|
# Pass 1: pick correct layers
|
||
|
sed -re "/$layers/"' { N; s/none/inline/; }' source.svg > "$fn"
|
||
|
# Pass 2: crop images
|
||
|
inkscape "$fn" -D --export-overwrite
|
||
|
# Pass 3: add margins
|
||
|
sed -ri 's/^ viewBox="[^"]*"/ viewBox="'"$viewbox"'"/' "$fn"
|
||
|
done < layers.map
|