mirror of
https://github.com/xomboverlord/xomb-docs.git
synced 2026-01-10 17:56:39 +01:00
15 lines
311 B
Bash
Executable File
15 lines
311 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -f index.html
|
|
rm -f index.tmp
|
|
echo "<html><head><title>XOmB Kernel Code Documentation</title></head><body><ul>" > index.tmp
|
|
|
|
for item in `find -name *.html`;
|
|
do
|
|
echo "<li><a href='${item:2}'>${item:2}</a></li>" >> index.tmp
|
|
done
|
|
|
|
echo "</ul></body></html>" >> index.tmp
|
|
|
|
mv index.tmp index.html
|