On Tue, 26 Oct 2010, Matt wrote:
> Is there a way to tell rm -f to only remove a file if its owned by say mail?
find . -user "$USERMATCH"-name "$FILENAME" \
-a -exec rm -f {} \;
or such ...
-- Russ herrold
Tue Oct 26 21:31:04 UTC 2010
R P Herrold <herrold at owlriver.com>
On Tue, 26 Oct 2010, Matt wrote:
> Is there a way to tell rm -f to only remove a file if its owned by say mail?
find . -user "$USERMATCH"-name "$FILENAME" \
-a -exec rm -f {} \;
or such ...
-- Russ herrold