Mass deleting

If you want to delete files by size (here files of 912345 bytes):

find . -size 912345c -print -exec rm -f {} \;

Comments are closed.