Published
- 1 min read
delete all files smaller than a certain size linux
The solution for this is noted below
delete all files smaller than a certain size linux
Solution
find . -name "*.tif" -type 'f' -size -160k -delete
Try other methods by searching on the site. That is if this doesn’t work