move all files in current dir with 0 size to /tmp


/ Published in: Bash
Save to your folder(s)

used to sort out empty music-files


Copy this code and paste it in your HTML
  1. find . -size 0 -print0|xargs -0 mv -t /tmp

Report this snippet


Comments


You need to login to view comments.