Skip to content

Instantly share code, notes, and snippets.

@BonyChops
Created July 20, 2022 16:19
Show Gist options
  • Save BonyChops/6a621dc00c6d5d89f4e3a7ca2db1462a to your computer and use it in GitHub Desktop.
Save BonyChops/6a621dc00c6d5d89f4e3a7ca2db1462a to your computer and use it in GitHub Desktop.
Convert svg files in directory to pdf
for f in $(ls *.svg | grep '.*\.svg$');
do
echo $f
inkscape $f --export-pdf=$f.pdf
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment