1#!/bin/bash
2# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
3
4for i in *.svg;
5  do inkscape "$i" --export-png="${i//svg/png}" --export-pdf="${i//svg/pdf}"
6done
7