David il y a 9 ans
Parent
commit
f38779d8f5
1 fichiers modifiés avec 5 ajouts et 0 suppressions
  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