Delete Zero Size Files
by Kyle on · Posted in Bash
This will delete all files in the current directory that have a size of zero.
find . -type f -size 0k -exec rm {} \; | awk '{ print $8 }'
![]()
Search · Sitemap · Contact · Account Center
by Kyle on · Posted in Bash
This will delete all files in the current directory that have a size of zero.
find . -type f -size 0k -exec rm {} \; | awk '{ print $8 }'
![]()