Find knowledge base article(s) by searching for keywords in the title e.g. type linux in the search box below
Find knowledge base article(s) by browsing the subject categories of articles
Technology quick references, cheatsheets, user manuals etc.
Shop Online through ShopifyLite
Tutorials on various IT applications.
Search Title    (UL:0 |SS:f)

Software >> OS >> Unix >> Solaris >> commands >> find >> How to find files larger or smaller than a certain size from a particular directory

equal

# find /targetdir -size 1000

- lists files with size 1000 blocks (512byte/block)

# find /targetdir -size 1000c

- lists files with size 1000 bytes

larger

# find /targerdir -size +1000c

-list files larger than 1000 bytes

smaller

# find /targetdir -size -1000c

- list files smaller than 1000 bytes

 

[ © 2008-2021 myfaqbase.com - A property of WPDC Consulting ]