root/deployment-scripts/index

Revision 90, 251 bytes (checked in by 235, 2 years ago)

update deployment scrits

Line 
1#!/bin/sh
2exec 2>&1
3echo Content-type: text/html
4echo ""
5
6/bin/cat << INDEX
7<html>
8<body>
9<h1><a href="/">$HTTP_HOST</a></h1>
10<ul>
11INDEX
12
13for i in `ls *.sh`
14do
15  echo "<li><a href="$i">$i</a></li>"
16done
17
18/bin/cat << INDEX
19</ul>
20</body>
21</html>
22INDEX
23
Note: See TracBrowser for help on using the browser.