iso/doc/handbook/get_wiki_release_notes

21 lines
485 B
Bash
Executable File

#!/bin/bash
# Quick hack to generate handbook.txt from pmwiki
# Johannes Winkelmann, jw at tks6 dot net
INFILE=releasenotes.in
OUTFILE=releasenotes.txt
CRUX_VERSION=2.7
URL="http://crux.nu/Main/ReleaseNotes${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" = "Main: ReleaseNotes${CRUX_VERSION/\./-}" ]; then
intext="yes";
fi
done > $OUTFILE
rm $INFILE