hekevintran Asked: 2010-06-20 15:50:52 +0800 CST2010-06-20 15:50:52 +0800 CST 2010-06-20 15:50:52 +0800 CST Editing modification times of files on Mac OS X 772 How can I set the modification time of a file on Mac OS X from the command line? mac-osx date-modified 1 Answers Voted Best Answer Jason 2010-06-20T17:11:15+08:002010-06-20T17:11:15+08:00 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
MacOS, and most (all?) Unix-like OSs have a touch command, that lets you modify access + mtimes.
on MacOS:
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: