David 9 vuotta sitten
vanhempi
commit
f38779d8f5
1 muutettua tiedostoa jossa 5 lisäystä ja 0 poistoa
  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