Learn about Linux
Download Linux
Get Linux help
Get special offers on:
Linux Application Dev Programming Software
Email:
#
Return to CLI Magic: Searching with find
© Copyright 1999-2008 - SourceForge, Inc., All Rights Reserved About Linux.com - Privacy Statement - Terms of Use - Advertise - Trademark - Ask Linux Questions - Write for Us - RSS Feed ThinkGeek - Slashdot - SourceForge.net - freshmeat - Surveys - Jobs
Find a string within the files
Posted by: Anonymous Coward on July 11, 2006 08:03 AMfind . -type f -iname '*.php' -exec grep -l -i "user" {} \;
This will locate all<nobr> <wbr></nobr>.php files containing the string 'user'.
Perhaps not monumental but it might help somebody.
#