summaryrefslogtreecommitdiff
path: root/make-doc.sh
diff options
context:
space:
mode:
Diffstat (limited to 'make-doc.sh')
-rwxr-xr-xmake-doc.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/make-doc.sh b/make-doc.sh
new file mode 100755
index 0000000..3b4b12d
--- /dev/null
+++ b/make-doc.sh
@@ -0,0 +1,8 @@
+#!/bin/sh
+which markdown &>/dev/null || echo "Need markdown utility!" >&2
+
+for i in doc/official_installation_guide_??
+do
+ echo $i
+ cat $i | markdown > $i.html
+done