Browse Source

create pdf

David 9 years atrás
parent
commit
f38779d8f5
1 changed files with 5 additions and 0 deletions
  1. 5 0
      makepdf.sh

+ 5 - 0
makepdf.sh

@@ -0,0 +1,5 @@
+#!/bin/bash
+set -u
+for f in *html; do
+	wkhtmltopdf "$f" "$f.pdf"
+done