Search found 2 matches
- Thu Nov 05, 2015 7:41 am
- Forum: Help with using Inkscape
- Topic: Batch optimize with Scour possible?
- Replies: 5
- Views: 2677
Re: Batch optimize with Scour possible?
Dear all, Here is a way to do it in bash shell: find . -name "*.svg" -exec scour -i {} -o {}.svg2 \; It searches for all the *.svg files in the current folder (.), executes for each match ( {} ) scour, then saves with a .svg2 appended extension. This way you keep the original files for com...
- Thu Nov 05, 2015 1:45 am
- Forum: Help with using Inkscape
- Topic: Batch optimize with Scour possible?
- Replies: 5
- Views: 2677
Re: Batch optimize with Scour possible?
Sorry duplicate