#!/bin/bash

if [[ -z "$1" ]]; 
then
	echo "usage: $0 [FILES]"
fi

for i in $@; do
	grep "\tSBE41\ Message" $i
done


