docs stuff

This commit is contained in:
Robin Johnson
2003-03-05 15:11:17 +00:00
parent 7cc13f4c05
commit c431c04f3d
4 changed files with 963 additions and 566 deletions

19
scripts/updatedocs.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/sh
#
# $Id$
#
# Script to build plain text documentation from the HTML version
#
SRC=Documentation.html
DST=Documentation.txt
OPTIONS="--dont_wrap_pre --nolist --dump"
CMD=lynx
if [ ! -e "$SRC" ]; then
if [ -e ../"$SRC" ]; then
SRC="../$SRC"
else
echo 'Unable to locate documentation!'
return
fi;
fi;
$CMD $OPTIONS "$SRC" > "$DST"