You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# 1) This scripts search all image and video files on the current folder and recursively.
# 2) All files will be sorted into folders, which names are the date of the files in that folder.
#
SAVEIFS=$IFS
IFS=$(echo -en "\n\b")
# Include xmp files, as they are sidecar files for images and videos.
for file in $( find . -type f -iregex '^.*\.xmp\|^.*\.JPG\|^.*\.JPEG\|^.*\.NEF\|^.*\.RAF\|^.*\.DNG\|^.*\.CR2\|^.*\.AVI\|^.*\.MP4\|^.*\.MOV\|^.*\.3GP' | sort )