From: Jan T. <de...@us...> - 2002-03-17 19:44:25
|
Update of /cvsroot/net-script/netscript2/src/perl In directory usw-pr-cvs1:/tmp/cvs-serv6673 Added Files: netscript.pl Log Message: * initial checkin --- NEW FILE: netscript.pl --- #!/usr/bin/perl #-------------------------------------------------------- # CGI-Script which will launch the interpreter. # $Id: netscript.pl,v 1.1 2002/03/17 19:44:22 derkork Exp $ # # NetScript and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. # (C) 2000-2001 by Jan Thomä, insOMnia # mailto: ko...@in... #-------------------------------------------------------- use NetScript::Interpreter; use strict; my $interpreter = NetScript::Interpreter -> new(); $interpreter -> run (); |