• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
3
4for i in *.svg;
5  do inkscape "$i" --export-plain-svg="${i//svg/plain.svg}"
6done
7