Any software to arrange photos in order?

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
 
Back
Top Bottom