3 lines
100 B
Bash
3 lines
100 B
Bash
|
#!/bin/sh
|
||
|
find \( -path '*/.pc' -o -path '*/.svn' \) -prune -o -type f -print0 | xargs -0 grep "$@"
|