summaryrefslogtreecommitdiff
path: root/compile.sh
blob: 11ae8a7bc8d6c946d5b91bb99c94f090cce9c2fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

# Install pandoc if unavailable
sudo apt-get install pandoc

# Remove existing final.md
rm final.md

# Compile it into one
for f in README.md getting_it.md code_devel.md using_it.md scope.md faqs.md 
do
	cat $f >> final.md
done
pandoc final.md -o one.html

echo "Check one.html";