[BACK]Return to texi2html CVS log [TXT][DIR] Up to [local] / OpenXM / src / asir-doc

File: [local] / OpenXM / src / asir-doc / Attic / texi2html (download)

Revision 1.4, Thu Mar 30 05:36:04 2017 UTC (7 years, 2 months ago) by takayama
Branch: MAIN
Changes since 1.3: +11 -44669 lines

Changes to output html helps in utf-8.

#!/bin/sh
if [ ! `which perl` ]; then
  echo "Perl is not installed. Error: texi2html is aborted."
  exit 1
fi  
if [ -x /usr/bin/texi2html ]; then
  /usr/bin/texi2html $* ;
elif [ -x /usr/local/bin/texi2html ]; then
  /usr/local/bin/texi2html $* ;
else
  perl ./texi2html.perl $* ;
fi