Windows command line shenanigans
May. 16th, 2019 10:00 amWhich photos were taken on which day? The dates are in the image metadata.
(for /f %G in ('dir /b DSC*') do @(C:\cygwin64\bin\echo.exe -n %G & (java -cp somepath\compositor\classes\ net.sf.compositor.util.ExifReader %G | grep -Fi "Date/time original"))) | sed -Ee "s/Date\/time original://"There is a Cygwin EXIF reader, which would have simplified this a bit.