On Mar 10, 3:29 pm, Alex Samad <[EMAIL PROTECTED]> wrote: > On Mon, Mar 10, 2008 at 11:48:34AM +1100, David Gillies wrote: > > Voytek Eymont wrote: > > > I once again have a compromised server, courtesy of a user installed cms; > > > > how do I get a recursive list of files owned by 'xxx' group 'xxx' ? > > > > ls -R just lists directories > > > find /path/to/directory -user xxx -group xxx > > does that show files that are user xxx AND group xxxx > > is it different from > > find /path/to/directory -user xxx -o -group xxx > > > > > -- > > dave. > > -- > > SLUG - Sydney Linux User's Group Mailing List -http://slug.org.au/ > > Subscription info and FAQs:http://slug.org.au/faq/mailinglists.html > > -- > Got a dictionary? I want to know the meaning of life. > > signature.asc > 1KDownload > > -- > SLUG - Sydney Linux User's Group Mailing List -http://slug.org.au/ > Subscription info and FAQs:http://slug.org.au/faq/mailinglists.html
-o : or operation -a : and operation ! : not operation FYI -- SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/ Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html
