From: rvaede on

I want to serach in a directory and all sub-directories if a UID exits
that has 452.
How can I do that?
From: John Kelly on
On Fri, 13 Aug 2010 12:15:13 -0700 (PDT), rvaede <rvaedex23(a)gmail.com>
wrote:

>I want to serach in a directory and all sub-directories if a UID exits
>that has 452.
>How can I do that?

Something like this works for me

find /tmp -uid 452


--
Web mail, POP3, and SMTP
http://www.beewyz.com/freeaccounts.php

From: rvaede on
On Aug 13, 3:20 pm, John Kelly <j...(a)isp2dial.com> wrote:
> On Fri, 13 Aug 2010 12:15:13 -0700 (PDT), rvaede <rvaede...(a)gmail.com>
> wrote:
>
> >I want to serach in a directory and all sub-directories if a UID exits
> >that has 452.
> >How can I do that?
>
> Something like this works for me
>
> find /tmp -uid 452
>
> --
> Web mail, POP3, and SMTPhttp://www.beewyz.com/freeaccounts.php
how would I find the name of a group

find /tmp -gid hello

does not work

From: John Kelly on
On Fri, 13 Aug 2010 12:36:35 -0700 (PDT), rvaede <rvaedex23(a)gmail.com>
wrote:

>On Aug 13, 3:20�pm, John Kelly <j...(a)isp2dial.com> wrote:
>> On Fri, 13 Aug 2010 12:15:13 -0700 (PDT), rvaede <rvaede...(a)gmail.com>
>> wrote:
>>
>> >I want to serach in a directory and all sub-directories if a UID exits
>> >that has 452.
>> >How can I do that?
>>
>> Something like this works for me
>>
>> find /tmp -uid 452
>>
>> --
>> Web mail, POP3, and SMTPhttp://www.beewyz.com/freeaccounts.php
>how would I find the name of a group
>
>find /tmp -gid hello
>
>does not work


-gid

expects a number, you need

-group


Those boxes without man pages are a bummer aren't they



--
Web mail, POP3, and SMTP
http://www.beewyz.com/freeaccounts.php