3 lines
113 B
Bash
Executable File
3 lines
113 B
Bash
Executable File
#!/bin/env bash
|
|
find . -not -path ".git" -name "*.html" -or -name "*.js" -print0 | xargs -0 grep -n --color "$@"
|