cmd¶
Find files smaller than 640 bytes:
find . -type f -size -640c
Find files smaller than 640 bytes and delete them:
find . -type f -size -640c -delete
Find files smaller than 640 bytes:
find . -type f -size -640c
Find files smaller than 640 bytes and delete them:
find . -type f -size -640c -delete