<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Jul 27, 2018 at 11:53 AM, Hu Bert <span dir="ltr">&lt;<a href="mailto:revirii@googlemail.com" target="_blank">revirii@googlemail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">&gt; Do you already have all the 190000 directories already created? If not could you find out which of the paths need it and do a stat directly instead of find?<br>
<br>
</span>Quite probable not all of them have been created (but counting how<br>
much would take very long...). Hm, maybe running stat in a double loop<br>
(thx to our directory structure) would help. Something like this (may<br>
be not 100% correct):<br>
<br>
for a in ${100..999}; do<br>
    for b in ${100..999}; do<br>
        stat /$a/$b/<br>
    done<br>
done<br>
<br>
Should run stat on all directories. I think i&#39;ll give this a try.<br>
</blockquote></div><br></div><div class="gmail_extra">Just to prevent these served from a cache, it is probably better to do this from a fresh mount?<br clear="all"></div><div class="gmail_extra"><br>-- <br><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr">Pranith<br></div></div>
</div></div>