Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 323dc70

Browse files
committed
Don't be so ugly as to use "set -x" to get the executed commands printed.
1 parent 2e7edb8 commit 323dc70

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

Doc/tools/mkhtml.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,16 @@ TEXINPUTS=$srcdir/$part:$TEXINPUTS
1616
export TEXINPUTS
1717

1818
if [ -d $part ] ; then
19-
(set -x; rm -f $part/*.html)
19+
rm -f $part/*.html
2020
fi
2121

22-
set -x
23-
22+
echo "latex2html -init_file $srcdir/perl/l2hinit.perl ${1:+$@} " \
23+
"$srcdir/$part/$part.tex"
2424
latex2html \
2525
-init_file $srcdir/perl/l2hinit.perl \
2626
${1:+$@} \
2727
$srcdir/$part/$part.tex
2828

29+
echo '(cd '$part'; '$srcdir'/tools/node2label.pl *.html)'
2930
cd $part
3031
$srcdir/tools/node2label.pl *.html

0 commit comments

Comments
 (0)