Photo sorting is dangerous business
13.07.2018 01:37
find . -type f -iname \*.JPG -print0 | xargs -0 -I '{}' /bin/mv "{}" ../JPG/
will overwrite your shit if filenames are the same!
Tags:
archive
find . -type f -iname \*.JPG -print0 | xargs -0 -I '{}' /bin/mv "{}" ../JPG/
will overwrite your shit if filenames are the same!