There are millions of files and the below shell script never completes. I think find is taking for ever.
How can I simplify this script for fast results.
for i in $(find `ls -d converted*` -name "*.xml")
do
ls -lrt $i | awk '{ if ( $5 == 1 ) print $0 }'
done;
Appreciate your help.
Thanks.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.