Search Files with Grep Command

Some times we want to search for text in a number of files.
Manually It'll take a lots of time. So Here is a command 
"grep": Global regular expression.
For this just make the use of following command. 
 
#ls -1rt | xargs grep -i  |more
 
Here -1 option will display the out output in listing,
then xargs will treat the output as files and grep 
command will search  in all specified directories.
At last this output will goes to more command 
i.e. displays output page wise.
 
 
Kuldeep 
!!Enjoy Linux 

Comments

Post a Comment

Popular posts from this blog

Kubernetes || Remove Namespace stuck in terminating state after delete

How to take JVM Heap Dump using jmap

Integrate Jenkins with Azure Key Vault