File:  [LON-CAPA] / loncom / build / lpml_html_posteval.pl
Revision 1.1: download - view: text, annotated - select for diffs
Thu Dec 6 00:24:01 2001 UTC (22 years, 5 months ago) by harris41
Branches: MAIN
CVS tags: HEAD
file for lpml postevaluation

#!/usr/bin/perl

use strict;

while(<>) {
    my $line=$_;
    my $arguments='';
    if (/\<\!\-\- POSTEVAL2 (.*?) \-\-\>/) {
	$arguments=$1;
    }
    if ($arguments=~/^verify\.pl fileglob/) {
	print "perl $arguments\n";
    }
}

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>