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
2010-06-11 11:41:24 +02:00
CRUX_VERSION=2.7
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