David hace 9 años
padre
commit
f38779d8f5
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  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