android13/external/libabigail/scripts/svg_to_png_and_pdf.sh

7 lines
169 B
Bash
Executable 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