This repository has been archived on 2025-01-31. You can view files and clone it, but cannot push or open issues or pull requests.

5 lines
104 B
Bash
Executable File

#!/usr/bin/env bash
for f in $@; do
rsvg-convert -d 300 -p 300 -f svg $f -o $f.bak ; mv $f.bak $f
done