
set -e 

if test $# -eq 0 ; then
  for f in [A-Za-z]*.txt ; do
    rm -f ${f%.txt}.html
    awiki --title "GNU Arch Bugs" -N ./gnuarch.css -n ./top-nav.txt -r . $f > ${f%.txt}.html
  done
else
  for f in "$@" ; do
    rm -f ${f%.txt}.html
    awiki --title "GNU Arch Bugs" -N ./gnuarch.css -n ./top-nav.txt -r . $f > ${f%.txt}.html
  done
fi


# arch-tag: Tom Lord Sun Feb  6 15:30:36 2005 (bugs/=update)
