Thread
:
grep > (only print lines without CVS)
View Single Post
10-02-2007, 08:31 AM
#
3
(
permalink
)
teknomage1
Jack of all trades
Join Date: Feb 2005
Location: Los Angeles
Posts: 596
I always love the find/xargs combo for this sort of thing:
Code:
find -not -name CVS -print0 |xargs -0 grep foo
__________________
Stop intellectual property from infringing on me
teknomage1
View Public Profile
Find More Posts by teknomage1