27 lines
552 B
Bash
Executable File
27 lines
552 B
Bash
Executable File
#!/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
|
|
|
|
TMPDOCDIRS=".. . `pwd` `pwd`/`dirname ${0}`/.. `dirname ${0}`/.."
|
|
for dir in ${TMPDOCDIRS}; do
|
|
[ -e "${dir}/${SRC}" ] && DOCDIR="${dir}"
|
|
[ -n "${DOCDIR}" ] && break
|
|
done
|
|
unset TMPDOCDIRS
|
|
if [ -z "${DOCDIR}" ]; then
|
|
echo 'Unable to locate documentation!'
|
|
exit -1
|
|
fi
|
|
|
|
SRC="${DOCDIR}/${SRC}"
|
|
DST="${DOCDIR}/${DST}"
|
|
|
|
${CMD} ${OPTIONS} "${SRC}" > "${DST}"
|