Generally computer users can memorize the locations of different files that they read or store. As the number of files increases, they can use descriptive filenames making it easy to guess the content by looking at the file name. However when the number of files grows higher & higher in number, it becomes a pain to remember locations or filenames. Also when a computer is used by some other person than the owner, it becomes even harder to locate some files. Search by partial name find -name "<filename pattern>" Above command is useful only if you can remember the filenames at least some parts of the file name. If you are a software developer, you know how many times you would want to search files based on the content. Search by content find <path> -name "<file name pattern>" -exec grep -l "<text to search>" {} \; Above command can be used to find the files based on content search. For example to find a file with a value say ...
Comments
Post a Comment