EnderUNIX Team.


EnderUNIX tips

Mail to My Friend , Home Page

[ UNIX ]

"searching for a string in files" - Parahat Melayev - (2005-08-11 11:30:24)   [4372]

If you need to find special string in bunch of files it will be handy to execute following combination of commands.

find /usr/include/ -name '*.h' | xargs grep 'struct sockaddr_in' | more


Mail to My Friend , Home Page