
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 16:21:40 2005 (indexes/=update)
