#!/usr/bin/perl

while (defined($_ = <STDIN>)) {
   chomp;
   if (/raid-watch/) {
      print("$_\n");
   }
}
