12 lines
230 B
Perl
12 lines
230 B
Perl
|
#! /usr/bin/env -S perl -ln
|
||
|
use strict;
|
||
|
|
||
|
if (/^evaluating file '(.*)'$/ or
|
||
|
/^copied source '(.*)' -> '.*'$/ or
|
||
|
/^trace: lorri read: '(.*)'$/) {
|
||
|
print $1;
|
||
|
next;
|
||
|
}
|
||
|
|
||
|
print STDERR unless /^instantiated '.*' -> '.*'$/;
|