/ Published in: Bash
Separate small and big files by moving it out to different directories.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
for f in `find . -iname "*.JPG" -size -500k`; do mv ${f} small; done