How can I set the modification time of a file on Mac OS X from the command line?
Asked
Active
Viewed 116 times
1 Answers
5
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
Jason
- 1,875
- 1
- 13
- 12