There are infinite ways of doing the following commands but here you can find some examples. They can be very useful when you need to manage a lot of files in different directories.
Using ‘find’
Delete empty files using find:
felipe@funstation:$ find dir/ -type f -empty -print0 | xargs rm -f