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