files having particular size ??

Status
Not open for further replies.

legolas

Padawan
hi,

in linux, how can i find the number of files and the file name which has size, say <= 10 KB??? i just wanted to list the total number of files and their names.... can any1 tell how to do this? thk you...

/legolas
 

vignesh

Wise Old Owl
Use grep.. You can use wordcount to find the number of files...

ls -l | wc -l

For < 10kb you can do this

blocksize ot s or k with ls
 
Last edited:
Status
Not open for further replies.
Top Bottom