#!/bin/sh
# This script greps the entire source for a string.

touch /tmp/dummy.txt
find . -name '*.[ch]' -exec grep "$1" '{}' /tmp/dummy.txt \;
