Thread
:
Using Linux find to find files and show attributes
View Single Post
04-26-2011, 09:01 AM
#
1
Jeff
Administrator
Join Date: Jul 2010
Posts: 402
Rep Power:
10
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!
Reply With Quote
Jeff
View Public Profile
Visit Jeff's homepage!
Find More Posts by Jeff