cgi-dev

Repository that serves as my CGI "scratchpad" to try things out.
git clone git://git.samirparikh.com/cgi-dev
Log | Files | Refs | README

echo.pl (128B) - raw


      1 #!/usr/bin/perl
      2 # test cgi script
      3 use strict;
      4 use warnings;
      5  
      6 print qq(Content-type: text/plain\n\n);
      7  
      8 print scalar localtime;