/ Published in: Bash
Separate small and big files by moving it out to different directories.
Expand |
Embed | Plain Text
for f in `find . -iname "*.JPG" -size -500k`; do mv ${f} small; done
You need to login to post a comment.
Separate small and big files by moving it out to different directories.
for f in `find . -iname "*.JPG" -size -500k`; do mv ${f} small; done
You need to login to post a comment.