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

RSS Icon Subscribe to comments

You need to login to post a comment.