David:

You might want to put some white space in:

        find / -size `expr 10 \* 1024 \* 2` -print

Also, be aware that the -size option expects 512 byte blocks. If you a
looking for a size in bytes, append a 'c'. e.g.:

        find / -size `expr 10 \* 1024 \* 2`c -print

 - Barry

> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf Of David Ouyang

> I try use find to find files larger then 10mb:
>
> find . -size +'expr 10\*1024\*2' -print
>
> but I get error msg:
>
> find:invalid argment '+expr 10\*1024\*2 to '-size'
>
>
> so what is correct command pramater to find?
> also am i being hacked, if so how can i check?
>
>
> Thanks in advance.
>
> __________________________________________________
> Do you Yahoo!?
> New DSL Internet Access from SBC & Yahoo!
> http://sbc.yahoo.com
>
> To Unsubscribe: send mail to [EMAIL PROTECTED]
> with "unsubscribe freebsd-questions" in the body of the message
>


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message

Reply via email to