Answers for "mac rename file to file creation date"

0

mac rename file to file creation date

for f in *.*; do echo mv -n "$f" "${f%.*}-$(stat -f'%SB' -t "%H_%M_%S" "$f").${f##*.}"; done
Posted by: Guest on January-02-2021

Browse Popular Code Answers by Language