Skip to content
This repository has been archived by the owner on Apr 25, 2024. It is now read-only.

Commit

Permalink
Added small cheatsheet pdf generator script
Browse files Browse the repository at this point in the history
(cherry picked from commit 616ad65)
  • Loading branch information
Marco Ciampa committed Feb 20, 2017
1 parent 7fd70b0 commit d35c8d2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions utils/cheatsheet/export-cheatsheet-in-pdf.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

cd ../../src/cheatsheet

for III in *.svg
do
CHEATNAME=`basename $III .svg`
inkscape --without-gui --file=${CHEATNAME}.svg --export-pdf=$CHEATNAME.pdf
done

0 comments on commit d35c8d2

Please sign in to comment.