Tag Archives: bash
Ignore svn directories while you grep
I have seen a lot of posts that show you how to ignore svn files when you grep. However, there seems to be more demand for a script that ignores svn directories. Here is one option:
tgrep(){
grep -r $1 * | grep -v .svn | while read line;
[...]


Where is my crontab located on Mac OS X 10.5 Leopard?