On Tue, Mar 10, 2009 at 10:39 AM, Matt wrote:
> I want to remove files but only if they are owned by a certain user and group.
>
> Basically I have this:
>
> find /var/spool/greylist -mmin +363 -exec rm -f {} \;
>
> I want to make sure it only deletes files owned by mail. Basically no
> matter wh
On Mar 10, 2009, at 10:39 AM, Matt wrote:
I want to remove files but only if they are owned by a certain user
and group.
Basically I have this:
find /var/spool/greylist -mmin +363 -exec rm -f {} \;
I want to make sure it only deletes files owned by mail. Basically no
matter what weird cha
On Tue, 10 Mar 2009, Matt wrote:
> I want to remove files but only if they are owned by a certain user
> and group.
>
> Basically I have this:
>
> find /var/spool/greylist -mmin +363 -exec rm -f {} \;
Find supports -user and -group arguments, e.g.,
find /var/spool -user mail -group mail -mmi
From: Matt
> I want to remove files but only if they are owned by a certain user and group.
> Basically I have this:
> find /var/spool/greylist -mmin +363 -exec rm -f {} \;
> I want to make sure it only deletes files owned by mail. Basically no
> matter what weird characters are in the file name
I want to remove files but only if they are owned by a certain user and group.
Basically I have this:
find /var/spool/greylist -mmin +363 -exec rm -f {} \;
I want to make sure it only deletes files owned by mail. Basically no
matter what weird characters are in the file names I want to make sur
5 matches
Mail list logo