7 lines
157 B
Bash
Executable File
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 "$@" {} \;
|