Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Delete all files belonging to a certain group / owner ?
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Portage & Programming
View previous topic :: View next topic  
Author Message
OdinsDream
Veteran
Veteran


Joined: 01 Jun 2002
Posts: 1057

PostPosted: Sun Nov 10, 2002 12:41 am    Post subject: Delete all files belonging to a certain group / owner ? Reply with quote

I've got a directory with many, many files. Is there an easy way to delete only the files that belong to a certain group, or to only a certain user?
Back to top
View user's profile Send private message
styrke
n00b
n00b


Joined: 09 Nov 2002
Posts: 6
Location: Linköping, Sweden

PostPosted: Sun Nov 10, 2002 1:20 am    Post subject: Re: Delete all files belonging to a certain group / owner ? Reply with quote

Yes, use find.

find . -type f -group wheel -exec rm \{\} \;

should remove all files in the current directory and all its subdirectories owned by group "wheel". See "man find" for more info.

Note: Use at your own risk! A good idea might be to replace rm with something harmless first, like echo, to see that it works the way you intended.
Back to top
View user's profile Send private message
OdinsDream
Veteran
Veteran


Joined: 01 Jun 2002
Posts: 1057

PostPosted: Sun Nov 10, 2002 2:17 am    Post subject: Reply with quote

Great solution! I'll look more into "find", as it looks like this is a great shell-scripting solution for things like this.

Worked like a charm.
Back to top
View user's profile Send private message
rac
Bodhisattva
Bodhisattva


Joined: 30 May 2002
Posts: 6553
Location: Japanifornia

PostPosted: Sun Nov 10, 2002 2:23 am    Post subject: Reply with quote

A good companion to find is xargs.
_________________
For every higher wall, there is a taller ladder
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Portage & Programming All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum