AIX

AIX

Connect with fellow AIX users and experts to gain knowledge, share insights, and solve problems.


#Power
#Power
#Operatingsystems
#Servers
 View Only
  • 1.  Search files

    Posted 10/05/06 09:33 PM

    Originally posted by: SystemAdmin


    Dear,

    In AIX 5L. How can I search the file by file size in all sub-directory?
    Exp...search all sub-directory files that size more than 100M

    TKS
    #AIX-Forum


  • 2.  Re: Search files

    Posted 10/06/06 04:43 AM

    Originally posted by: andycor


    Hi,

    here is an example, it will search all the files longer than 100MB in /tmp:

    find /tmp -size +104857600c

    The c letter specifies bytes. Omitting it evaluates the number as blocks (512 bytes per block)

    Regards,
    Andrés.
    #AIX-Forum