Files
i2p.scripts/source/grepall.sh

7 lines
157 B
Bash
Executable File

#!/bin/sh
#
# grep the source
# maybe grep -R would be better
#
find . -type f \( -name \*.java -o -name \*.jsp -o -name \*.xml \) -exec grep -il "$@" {} \;