Saturday, February 19, 2011

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 

Kubernetes 1.31 || Testing the Image Volume mount feature using Minikube

With Kubernetes new version 1.31 ( https://kubernetes.io/blog/2024/08/13/kubernetes-v1-31-release/ ) there are so many features releases for...