#!/usr/bin/perl                   
# The first line defines the Perl Interpreter
# Written 07/14/01 by DPH


@INC =(@INC, '/home/hamilton/bin/perl');

require 'parasearch.pl';

# main program

while (@ARGV) {
    $FILE= shift(@ARGV);
    print "hellow\n";
    print $FILE;
}

{

    open(FILE,"<$_");
    while (FILE) {
	print $_;
    }
}
    
