Kaydet (Commit) c4e92630 authored tarafından Fred Drake's avatar Fred Drake

Add a few comments.

üst 38df3c38
#! /bin/sh #! /bin/sh
# -*- Ksh -*- # -*- Ksh -*-
# Script to drive the HTML-info conversion process.
# Pass in a single parameter: the name of the top-level HTML file
# generated by LaTeX2HTML.
#
# Written by Fred L. Drake, Jr. <fdrake@acm.org>
PERL=${PERL:-perl} PERL=${PERL:-perl}
EMACS=${EMACS:-emacs} EMACS=${EMACS:-emacs}
...@@ -14,6 +19,7 @@ DOCDIR=`dirname "$FILENAME"` ...@@ -14,6 +19,7 @@ DOCDIR=`dirname "$FILENAME"`
DOCFILE=`basename "$FILENAME"` DOCFILE=`basename "$FILENAME"`
DOCNAME=`basename "$FILENAME" .html` DOCNAME=`basename "$FILENAME" .html`
# Now build the real directory names, and locate our support stuff:
WORKDIR=`pwd` WORKDIR=`pwd`
cd `dirname $0` cd `dirname $0`
TOOLSDIR=`pwd` TOOLSDIR=`pwd`
...@@ -23,7 +29,8 @@ cd $WORKDIR ...@@ -23,7 +29,8 @@ cd $WORKDIR
run() { run() {
echo "$@" # show what we're doing, like make does:
echo "$*"
$* || exit $? $* || exit $?
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment