ceph/branches/sage/pgs/script/clean_trace.pl
sageweil 9213a23f14 eek
git-svn-id: https://ceph.svn.sf.net/svnroot/ceph@1138 29311d96-e01e-0410-9327-a35deaab8ce9
2007-02-28 18:42:55 +00:00

9 lines
96 B
Perl
Executable File

#!/usr/bin/perl
my $n = 0;
while (<>) {
next unless /trace: /;
my $l = $'; $';
print $l;
}