iso/doc/handbook/get_wiki_handbook

25 lines
495 B
Plaintext
Raw Normal View History

#!/bin/bash
# Quick hack to generate handbook.txt from pmwiki
# Johannes Winkelmann, jw at tks6 dot net
INFILE=handbook.in
OUTFILE=handbook.txt
2020-10-20 22:31:44 +02:00
CRUX_VERSION=3.6
TITLE="HANDBOOK FOR CRUX $CRUX_VERSION"
2019-06-05 17:20:01 +02:00
URL="https://crux.nu/Main/Handbook${CRUX_VERSION/\./-}?action=print"
set -x
links -dump $URL > $INFILE
cat $INFILE|while read n; do
if [ -n "$intext" ]; then
cat
elif [ "$n" = "1. Preface" ]; then
echo "$TITLE"
echo "";
echo " $n";
intext="yes";
fi
done > $OUTFILE
rm $INFILE