Published
- 1 min read
find empty files linux
The solution for this is noted below
find empty files linux
Solution
find . -type f -size 0b
#OR
find . -type f -empty
Try other methods by searching on the site. That is if this doesn’t work
Published
- 1 min read
The solution for this is noted below
find . -type f -size 0b
#OR
find . -type f -empty
Try other methods by searching on the site. That is if this doesn’t work