Sign in
android
/
platform
/
external
/
libabigail
/
d7e59a5af28625feb2b9fb90317635444f7f7bbb
/
.
/
scripts
/
svg_to_png_and_pdf.sh
blob: 84b635b547844ffeec4c6dfac14152b511201a99 [
file
]
#!/bin/bash
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
for
i
in
*.
svg
;
do
inkscape
"$i"
--
export
-
png
=
"${i//svg/png}"
--
export
-
pdf
=
"${i//svg/pdf}"
done