Files
i2p.scripts/source/findall.sh

7 lines
172 B
Bash
Raw Normal View History

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