This commit is contained in:
Miloslav Ciz 2024-02-24 19:26:17 +01:00
parent 940ac8279b
commit 280aba9025
8 changed files with 1710 additions and 1675 deletions

20
make_all.sh Executable file
View file

@ -0,0 +1,20 @@
#!/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
tar -czvf lrs_wiki.tar.gz lrs_wiki
rm -rf lrs_wiki
cp lrs_wiki.tar.gz html
echo "done"