grephdr.sh 172 B

1234
  1. #!/bin/sh
  2. # This script is in the public domain.
  3. # grepsrc.sh string --- greps for string over all header files
  4. find . -name "*.h" -print | grep -v "#" | xargs grep "$@"