Skip to content

Instantly share code, notes, and snippets.

@gokhansolak
gokhansolak / svg_to_eps.sh
Created September 13, 2022 19:00
Convert all svg files in the folder to eps files, using Inkscape
#!/usr/bin/env bash
# optionally clear all eps files
# rm *.eps
for f in *.svg
do
fname=${f##*/}
fprefix=${fname%.*}
echo $fprefix