1
0
mirror of https://github.com/twitter/twemoji.git synced 2024-07-01 02:19:09 +00:00
twemoji/svg.sh
2014-12-19 14:56:16 +00:00

33 lines
682 B
Bash

createsvg() {
local d
local svg
for d in assets/*.ai; do
svg=$(echo "$d" | sed 's/.ai/.svg/')
echo "creating $svg ..."
inkscape -f "$d" -l "$svg"
done
mkdir -p svg
mv assets/*.svg svg/
}
viewport() {
local f
for f in svg/*.svg; do
content=$(
cat "$f" |
sed 's/<!-- Created with Inkscape (http:\/\/inkscape.org\/) -->//' |
sed 's/width="47.5"/viewBox="0 0 47.5 47.5"/' |
sed 's/height="47.5"/style="enable-background:new 0 0 47.5 47.5;"/' |
sed -e ':a' -e 'N' -e '$!ba' -e 's/\n//g' |
sed -e 's/ */ /g' |
sed -e 's/ \/>/\/>/g'
)
echo "$f"
echo "$content" >"$f"
done
}
createsvg
viewport