fixed common line filter

Merge of master-melb:xfs-cmds:26836a by kenmcd.

  fixed common line filter
This commit is contained in:
Allan Randall
2006-08-22 03:56:34 +00:00
parent 9e78f7bcac
commit b6f1679a37
+2 -2
View File
@@ -40,12 +40,12 @@ _cleanup()
common_line_filter()
{
perl -ne 'if (/.*:(.*)/) {
if ( "$last_line" ne "$1" ) { print $_; $first_match=1; }
if ( "$last_line" ne "$1" ) { print "$_"; $first_match=1; }
elsif ( $first_match==1 ) { print "*\n"; $first_match=0; }
$last_line="$1";
}
else {
print $_
print $_; $last_line=$_;
}'
}