programming faqs interview questions tech technical educational freshers guide preparation interviews hr telephonic
try another color:
try another fontsize: 60% 70% 80% 90%
Programming FAQs

difference between find command and grep command in linux

find command is used to

find command is used to search for files and directories

find [pathnames] [conditons]
eg: find /etc -type f -size +100M

grep command is used to search for a text patterns within a file, it allows regular expressions

grep [text-pattern] [path]

grep pfaqs /myproject