# Find everything in my results directory that looks like lmbench output. # # Hacked into existence by Larry McVoy (lm@bitmover.com) # Copyright (c) 1994-1998 Larry McVoy. # $Id$ eval 'exec perl -Ssw $0 "$@"' if 0; $LIST = "no such file"; $LIST = "LIST" if (-f "LIST"); $LIST = $ARGV[0] if (($#ARGV == 0) && (-f $ARGV[0])); if (-f $LIST) { open(L, $LIST); $_ = ; chop; @files = split; close(L); } else { @files = <*/*>; } foreach $file (@files) { next if $file =~ /\.INFO$/; open(FD, $file) || next; next unless defined($_ = ); close(FD); next unless /^\[lmbench2.[01]/; print "$file "; } print "\n"; exit 0;