#!/usr/bin/perl -w #!C:/xampp/perl/bin/perl -w # # This file is part of a perl tutorial # # (C) Copyright 1999 Hans Kern # # File name : pldemo18.cgi # Created by : Hans Kern # Creation date: 25.5.99 # # Ausführen von Kommandos print "Content-type: text/plain\n\n"; print "Das heutige Datum ist:\n"; $date = `date`; print $date; exit (0);