less_retarded_wiki/make_all.sh

20 lines
325 B
Bash
Raw Normal View History

2024-02-24 19:26:17 +01:00
#!/bin/sh
# Convert the wiki to all formats.
echo "making all"
./make_html.sh
./make_txt.sh
./make_pdf.sh
mkdir lrs_wiki
mkdir lrs_wiki/md
cp *.md lrs_wiki/md
cp lrs_wiki.html lrs_wiki
cp lrs_wiki.txt lrs_wiki
cp lrs_wiki.pdf lrs_wiki
2024-03-19 16:01:03 +01:00
7z a lrs_wiki.7z lrs_wiki -t7z -mfb=64 -md=32m -ms=on
cp lrs_wiki.7z html
2024-02-24 19:26:17 +01:00
echo "done"