Files
i2p.scripts/source/grepall.sh

7 lines
158 B
Bash
Raw Normal View History

2020-10-18 20:41:16 +00:00
#! /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 "$@" {} \;