Files
i2p.scripts/source/grepall.sh

7 lines
157 B
Bash
Raw Normal View History

#!/bin/sh
2009-11-14 17:40:03 +00:00
#
# grep the source
# maybe grep -R would be better
#
find . -type f \( -name \*.java -o -name \*.jsp -o -name \*.xml \) -exec grep -il "$@" {} \;