blob: 421924c335b72b9ec8ff75b92106152700ad12ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
echo -ne "Content-type: text/html\r\n\r\n"
echo -e "<HTML>\n"
echo -e "<BODY>\n"
echo -e "THis is a simple cgi file\n"
echo -e "$QUERY_STRING"
echo -e "</body>"
echo -e "</html>"
|