Skip to content

Commit

Permalink
Add svgopt command to optimize a whole folder of SVG files
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronfranke authored Apr 18, 2023
1 parent e319272 commit 14b5748
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions all-distros/bash_aliases
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,13 @@ updatemaster() {
git push
}

svgopt() {
for file in *; do
svgcleaner $file $file.opt.svg
mv $file.opt.svg $file
done
}

# Media converting methods.

mp3ogg() {
Expand Down

0 comments on commit 14b5748

Please sign in to comment.