(root) CMD (&nbsp; [ -d /var/lib/php5 ] &amp;&amp; find /var/lib/php5/ -type f -cmin +$(/usr/lib/php5/maxlifetime) -print0 | xargs -r -0 rm)<br><br>that cronjob can likely be changed to prevent using &#39;xargs&#39; which means 1 less process, little less file activity, bleh like this matters that much given how infrequently its called, but still, to quote a tv advert for a local grocery store &quot;every little helps&quot; :)
<br><br>instead of -print0 try&nbsp;&nbsp; -exec rm {} \;<br><br>if you dont know, exec must be terminated with a ; which generally needs to be escaped, and {} is replaced by the name of the file that find found.<br><br>I am unsure if there is a reason to not do this, but given its relying on debian find to run, and debian always (afaik) ships with a real find (ie not a busybox embedded or anything that may not support it) it should work.&nbsp; I also would wonder how many embedded finds wouldnt support -exec but would the other args.
<br><br clear="all"><br>-- <br>Trixter <a href="http://www.0xdecafbad.com">http://www.0xdecafbad.com</a>&nbsp;&nbsp;&nbsp;&nbsp; Bret McDanel<br>Belfast +44 28 9099 6461&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;US +1 516 687 5200<br><a href="http://www.trxtel.com">http://www.trxtel.com
</a> the VoIP provider that pays you!