Dear All
How can I find big files on my solaris8 disk with say more than 500MB
in size?
Thank you
|
|
0
|
|
|
|
Reply
|
motamedi24 (67)
|
10/17/2010 10:56:39 AM |
|
On Oct 17, 1:56=A0pm, hadi motamedi <motamed...@gmail.com> wrote:
> Dear All
> How can I find big files on my solaris8 disk with say more than 500MB
> in size?
> Thank you
Sorry . I found it as :
#find / -type f -size 204800 -ls
|
|
0
|
|
|
|
Reply
|
hadi
|
10/17/2010 11:36:06 AM
|
|
On 10/17/10 07:36 AM, hadi motamedi wrote:
> On Oct 17, 1:56 pm, hadi motamedi<motamed...@gmail.com> wrote:
>> How can I find big files on my solaris8 disk with say more than 500MB
>> in size?
> Sorry . I found it as :
> #find / -type f -size 204800 -ls
>
That would give you files of exactly 204800 blocks (1 block = 512 bytes).
To find files LARGER than a certain size in bytes use -size +#####c
find / -type f -size +524288000c -ls
man find
|
|
1
|
|
|
|
Reply
|
Oscar
|
10/18/2010 4:16:41 PM
|
|