#!/bin/sh
make_filelist

echo > comment_files
for fn in `cat filelist` ; do
     grep -l "SPECIAL FORMATTED COMMENT" $fn >> comment_files
done

