
# Find everything in my Results directory that looks like lmbench output.
#
# Hacked into existence by Larry McVoy (lm@sun.com now lm@sgi.com).
# Copyright (c) 1994 Larry McVoy.  GPLed software.
# $Id: getlist,v 1.1 1994/11/23 07:16:48 lm Exp $
eval "exec perl -Ss $0 $*"
	if 0;

foreach $file (<*/*>) {
	open(FD, $file) || next;
	$_ = <FD>;
	close(FD);
	next unless /^\[lmbench1.0/;
	print "$file ";
}
print "\n";
