Files
i2p.scripts/source/grepall.sh
2020-10-18 20:41:16 +00:00

7 lines
158 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 "$@" {} \;