File: makeindex

package info (click to toggle)
blt 2.5.3%2Bdfsg-3
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 24,864 kB
  • sloc: ansic: 133,724; tcl: 17,680; sh: 2,722; makefile: 799; cpp: 370
file content (17 lines) | stat: -rw-r--r-- 356 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

echo "<HTML>"
echo "<HEAD>"
echo "<TITLE>BLT Command Information</TITLE>"
echo "</HEAD>"
echo "<BODY bgcolor='white'>"
echo "<H1>Table of Contents</H1>"
echo " "
echo "<UL>"
for name in $(cd ../html; LANG=C ls -1 *.html)
do
    bname=$(basename $name .html)
    echo "<LI><A href='$name'>$bname</A></LI>"
done
echo "</UL>"
echo "</BODY></HTML>"