mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
5 lines
118 B
Bash
Executable File
5 lines
118 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
|