It Might Not be Written in Ruby but...
Posted by Rick DeNatale Fri, 03 Aug 2007 00:11:00 GMT
This looks interesting.
I wish I had a nickel for every time I’ve typed something like:
grep whatever -R . | grep -v .svnPosted by Rick DeNatale Fri, 03 Aug 2007 00:11:00 GMT
This looks interesting.
I wish I had a nickel for every time I’ve typed something like:
grep whatever -R . | grep -v .svn
Use the following link to trackback from your own site:
http://talklikeaduck.denhaven2.com/articles/trackback/451
Comments are disabled
“Search for PATTERN in each source file in the tree from cwd on down”
find . -type f | xargs grep …