16 Oct
2006
16 Oct
'06
8:01 p.m.
On Mon, Oct 16, 2006 at 04:54:14PM +0200, Remi Gacogne wrote:
Le 16 oct. 06 à 15:48, Petar Bogdanovic a écrit :
On Mon, Oct 16, 2006 at 10:42:59AM +0200, Geert Hendrickx wrote:
On Mon, Oct 16, 2006 at 10:31:23AM +0200, Dirk Essl wrote:
Mart Pirita wrote:
Any hint for good script to delete them from all users?
find /where/the/index/files/are/ -name dovecot.index*|xargs rm
Don't forget to escape the *.
find /path -name dovecot.index.\* | xargs rm
find /path -name 'dovecot.index.*' -exec rm {} \;
;)
find /path -name 'dovecot.index.*' -delete
`-delete' is not [1]portable. :]
$ find /path -name 'dovecot.index.*' -delete find: -delete: unknown option $ uname -mrs NetBSD 3.0 i386
[1] http://www.opengroup.org/onlinepubs/007908799/xcu/find.html