Update
[less_retarded_wiki.git] / make_all.sh
blob94ac72b7b0686295303a3f46cf0a32306a15e151
1 #!/bin/sh
2 # Convert the wiki to all formats.
4 echo "making all"
6 ./make_html.sh
7 ./make_txt.sh
8 ./make_pdf.sh
10 mkdir lrs_wiki
11 mkdir lrs_wiki/md
12 cp *.md lrs_wiki/md
13 cp lrs_wiki.html lrs_wiki
14 cp lrs_wiki.txt lrs_wiki
15 cp lrs_wiki.pdf lrs_wiki
16 7z a lrs_wiki.7z lrs_wiki -t7z -mfb=64 -md=32m -ms=on
17 cp lrs_wiki.7z html
19 echo "done"