From 367caeb01dbb4798a919ceb674e0559d691c8102 Mon Sep 17 00:00:00 2001 From: interp Date: Tue, 28 Jan 2003 21:52:28 +0000 Subject: [PATCH] Emit HTML tags, too. --- web-server/root/cgi-bin/comments.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/web-server/root/cgi-bin/comments.sh b/web-server/root/cgi-bin/comments.sh index 319908e..024c291 100755 --- a/web-server/root/cgi-bin/comments.sh +++ b/web-server/root/cgi-bin/comments.sh @@ -1,9 +1,10 @@ #!/bin/sh # An example CGI program outputing the current date -echo Content-Type: text/html -echo Status: 200 OK +echo content-type: text/html +echo status: 200 OK echo +echo "" echo "

This is the cgi script.

" echo "
Current date: " echo `date` -echo +echo ""