gravity/find
2025-12-27 21:20:37 -06:00

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 "$@"