7 lines
181 B
Bash
Executable File
7 lines
181 B
Bash
Executable File
#!/bin/env bash
|
|
find . \
|
|
-type f \
|
|
\( -path ".git" -o -path '*/node_modules/*' \) -prune -o \
|
|
\( -name "*.html" -o -name "*.js" \) -print0 \
|
|
| xargs -0 grep -n --color "$@"
|