i'm trying to print the files that are of a size or higher but i don't get how find -size work i tried this.
find -size>100
But it still prints file smaller then 100 byte. So how do i do this?
|
i'm trying to print the files that are of a size or higher but i don't get how find -size work i tried this.
But it still prints file smaller then 100 byte. So how do i do this? |
|||
|
|
The + is equivalent to "greater than", and the "c" suffix indicates bytes (characters) rather than the default 512-byte blocks. Check |
|||
|
|