rwxrob-dot/scripts/grepall
Rob Muhlestein 2ea0289e9f Rebase
2022-02-09 02:29:05 -05:00

9 lines
205 B
Bash
Executable File

#!/bin/sh
find . \
-name '.git' \
-prune -o \
-exec grep -i --color=always "$1" {} \
/dev/null \
2>/dev/null \;