Hello, I have a small file produced that reads teh following:
Score: 192, lines:30 'display.doc /home/kgo11/docroot/'
and it has multiple lines liek this. I have set up my perl script to read teh file line by lise using
while ( $line = <FILE> )
{
($Score, $Lines, $File, $Dir) = /Score: (\d+), lines\d+) '(\w+) * (\w+)'.
Can you see what the problem is and wy it is missing all of the variables
Score: 192, lines:30 'display.doc /home/kgo11/docroot/'
and it has multiple lines liek this. I have set up my perl script to read teh file line by lise using
while ( $line = <FILE> )
{
($Score, $Lines, $File, $Dir) = /Score: (\d+), lines\d+) '(\w+) * (\w+)'.
Can you see what the problem is and wy it is missing all of the variables