On Sun, Jan 15, 2012 at 01:07:44PM -0700, [email protected] wrote: > > > Are you familiar with grep? It's become my favorite development tool > practically... > I just wish find worked as cool or I knew it better to do the same thing > with files > by their name.
maybe find -name 'Makefile' | xargs grep -i "werror" - that's AFTER configuring. Before that, 'Makefile.*' might be better. and as I'm sure you know, grep doesn't like looking for things that resemble switches (i.e. start with '-') : that's where egrep sometimes comes in handy. ĸen, using gnome-shell on a machine that doesn't support 3d acceleration - can you say ssslllooowww ? -- das eine Mal als Tragödie, das andere Mal als Farce -- http://linuxfromscratch.org/mailman/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
