7 lines
133 B
Bash
Executable File
7 lines
133 B
Bash
Executable File
#!/bin/sh
|
|
|
|
pattern="$1"
|
|
shift
|
|
|
|
exec grep --exclude-dir=.svn --exclude-dir=.git --exclude=tags --color=auto -HIrn "\<$pattern\>" "$@"
|