Code:
#!/bin/bash
cd ~
find -type f -size 0b -iname "*" ! -iname ".*" -exec rm {} \;
If you don't trust me (and you shouldn't ;} trust
anyone, always test stuff) run it without the exec
bit, first, to make sure it only finds files you
REALLY want deleted....
Cheers,
Tink
P.S.: find rocks ;}