Change Date and Time of Creation and Modification of file based on filename in MacOS folder
问题 I have a lot of files in folder with filenames like 20190618_213557.mp4 20190620_231105.mp4 20190623_101654.mp4 .. I need to change creation date and time based on filename 20190618_213557=YYYYMMDD_HHMMSS using bash script in terminal 回答1: MACOS Uses touch -mt to change file creation/modification time. Here is the script: #!/bin/bash FILES="/Users/shakirzareen/Desktop/untitledfolder/*" for f in $FILES ## f = full path + filename do t="${f##*/}" ##remove folder path from filename t2="${t//_}"