{Dev Tricks} » unix http://dev-tricks.net Blogging developper tips and tricks Sun, 30 Aug 2009 00:14:47 +0000 http://wordpress.org/?v=2.9.2 en hourly 1 Exclude directories from recursive grep http://dev-tricks.net/exclude-directories-matching-from-recursive-grep http://dev-tricks.net/exclude-directories-matching-from-recursive-grep#comments Sun, 16 Nov 2008 14:20:13 +0000 Julien Palard http://dev-tricks.net/?p=53 How often are you using grep in subversionned folders like that :

grep -rni foobar . | grep -v .svn

Upgrade to grep 2.5.3 and use (alias it ?)

grep -rni --exclude-dir .svn foobar .

(or … stop using SVN ! ! !)

]]>
http://dev-tricks.net/exclude-directories-matching-from-recursive-grep/feed 0