#!/bin/bash
for f in *.cc *.c *.h
do
	s=`cat $f | grep "// Status:" | awk '{ print $3 }'`
	echo Status of $f is $s
done

	
