How to delete zero byte files in your folders
It is easy peasy like this:
1 | find . - type f -name "*.php" -size 0 -print0 | xargs -0 rm |
And that’s all!
It is easy peasy like this:
1 | find . - type f -name "*.php" -size 0 -print0 | xargs -0 rm |
And that’s all!