sunet/web-server/root/cgi-bin/comments.sh

10 lines
203 B
Bash
Raw Normal View History

2002-08-22 11:38:17 -04:00
#!/bin/sh
2002-09-14 12:46:15 -04:00
# An example CGI program outputing the current date
2002-08-22 11:38:17 -04:00
echo Content-Type: text/html
2002-09-02 09:33:45 -04:00
echo Status: 200 OK
2002-08-22 11:38:17 -04:00
echo
echo "<h2> This is the cgi script. </h2>"
2002-08-29 10:47:12 -04:00
echo "<br> Current date: "
echo `date`
echo