From: Andre Date: Sat, 27 Jan 2007 10:33:08 +0000 (+0100) Subject: simplify com_man() of command_util.sh X-Git-Tag: v0.2.15~81 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=3e5fc3eb04d048d7b30c857e12107799beb39c31;hp=953bdd7eaaa7a737e57655a24848b8cdd84ddfcd simplify com_man() of command_util.sh --- diff --git a/command_util.sh b/command_util.sh index d6626c25..5119f58b 100755 --- a/command_util.sh +++ b/command_util.sh @@ -150,7 +150,6 @@ dump_man() com_man() { - local n echo "[$section_name]" echo while : ; do @@ -161,10 +160,7 @@ com_man() if test $ret -eq 0; then break fi - dump_man #> $txtdir/$n.txt -# txt2man -t "$n" -r "$r" < $txtdir/$n.txt \ -# | sed -e 1d > $mandir/$n.1 -# man2html $mandir/$n.1 > $htmldir/$n.html + dump_man done }