#!/bin/bash
for f in `ls -1 gruprot25/reservations/lab*`; do
    result=`more $f | grep $1 | wc -l`;
    if [ $result -eq 1 ]
    then
	echo $result;
	echo $f;
    fi
done
