I Have a folder full of photos i want to arranged into order without having to rename every single one, is there any software that i can use to do this?
Most graphical environments like Windows will allow you to sort a directory by tings like date or type. What is it you want to do, have something rename a directory of files so they appear in temporal order?
In linux or mac run this from a terminal:
Code:
for i in *.jpg; do dst=$(exif -t 0x9003 -m $i ) && dst_esc=$(echo $dst | sed 's/ /-/g' ) && echo mv $i $dst_esc.jpg ; done
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.