iso/doc/handbook/get_wiki_release_notes
Matt Housh f9f836dfaf More updates for upcoming 3.2 release
- Updated ISO kernel to 4.1.8
    - Added isohybrid call to Makefile, removed mkhybrid
    - Updated documentation versions to 3.2
    - Updated setup.dependencies
    - Updated packages.opt
        - Added btrfs-progs, jfsutils, ppp,
            reiserfsprogs, unzip, xfsprogs, zip
        - Removed rp-pppoe
2015-09-25 10:34:32 -05:00

21 lines
487 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=3.2
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