mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
9 lines
205 B
Bash
Executable File
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 \;
|