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

10 lines
203 B
Bash
Executable File

#!/bin/sh
# An example CGI program outputing the current date
echo Content-Type: text/html
echo Status: 200 OK
echo
echo "<h2> This is the cgi script. </h2>"
echo "<br> Current date: "
echo `date`
echo