Return to Snippet

Revision: 24568
at March 8, 2010 02:20 by bionic


Updated Code
//this command find any file name that contains "searchterm"
grep -lir "text to find" *
//this command finds files with the searchterm name
find / -iname "*searchterm*" ;

Revision: 24567
at March 4, 2010 03:09 by bionic


Initial Code
find / -iname "*searchterm*" ; 
//this command find any file name that contains "searchterm" , -i options case insensitive .

Initial URL


Initial Description


Initial Title
Linux find term in any file

Initial Tags
linux, find

Initial Language
Bash