File: generateHtml.sh

package info (click to toggle)
iwidgets4 4.1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,116 kB
  • sloc: tcl: 19,688; sh: 638; awk: 273; perl: 265; makefile: 130
file content (10 lines) | stat: -rw-r--r-- 148 bytes parent folder | download | duplicates (25)
1
2
3
4
5
6
7
8
9
10
#!/bin/ksh
#

manpages=`\ls *.n`

for doc in $manpages
do
  echo "Generating html/$doc.html"
  nroff -man $doc | rman -f html > html/$doc.html
done