View Single Post
04-26-2011, 09:01 AM   #1
Jeff
Administrator
 
Jeff's Avatar
 
Join Date: Jul 2010
Posts: 402
Rep Power: 10
Jeff is getting browny points
Using Linux find to find files and show attributes

Sometimes you need to search for particular files and show their attributes in the results. Here is an easy way to do it:

Code:
find . -name somefile.xml | awk '{ print "ls -l "$1 }' | sh
Enjoy!
Jeff is offline   Reply With Quote