How can I set the modification time of a file on Mac OS X from the command line?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

MacOS, and most (all?) Unix-like OSs have a touch command, that lets you modify access + mtimes.

on MacOS:

touch 06011200 file

Will set the mtime of 'file' to June 1st of this year.

GNU's version lets you specify times in a slightly more convenient format:

touch -d yesterday file
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.