mirror of
https://github.com/tonydamage/nux-env.git
synced 2025-12-11 13:24:28 +01:00
5 lines
113 B
Bash
Executable file
5 lines
113 B
Bash
Executable file
#!/bin/sh
|
|
location=.
|
|
file_pattern="*.java"
|
|
|
|
find $location -iname "$file_pattern" | xargs grep -l "$1" | sort -u
|