trinity-users@lists.pearsoncomputing.net

Message: previous - next
Month: June 2019

Re: sorry, on t-bird know nothing about running current version on imap

From: deloptes <deloptes@...>
Date: Sun, 16 Jun 2019 20:57:01 +0200
Dr. Nikolaus Klepp wrote:

> find /home/gene/Mail -name \*.index\* -exec rm \{\} \;

Something people do from old school days, but it is better to do:

find /home/gene/Mail -type f -name '*.index*' -delete

which will restrict to files only and call implicit delete - which is more
efficient that calling external rm

;-)

regards