Skip to content

Instantly share code, notes, and snippets.

@solexious
Created May 3, 2014 18:58
Show Gist options
  • Save solexious/4719c54f5fb405ff84e9 to your computer and use it in GitHub Desktop.
Save solexious/4719c54f5fb405ff84e9 to your computer and use it in GitHub Desktop.
#!/bin/bash
shopt -s nullglob
for file in /home/solexious/cert/*.svg
do
file="${file%.*}"
inkscape --without-gui --export-pdf="$file.pdf" "$file.svg"
lpr "$file.pdf"
rm "$file.pdf"
mv "$file.svg" /home/solexious/cert/printed/
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment