iso/doc/handbook/get_wiki_handbook

25 lines
530 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
2009-05-28 15:15:04 +02:00
CRUX_VERSION=2.6
TITLE="HANDBOOK FOR CRUX $CRUX_VERSION"
URL="http://crux.nu/Main/Handbook${CRUX_VERSION/\./-}?action=print"
set -x
links -no-numbering -no-references -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