Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Change the modifiled timestamp of a file to the specified timestamp.
touch -m -t 201512180130.09 some_fileChange the modified timestamp of a file to the current time.
touch -m some_fileChange the modified timestamp of all files in the current directory to the current time.
find . -type f -print0 | xargs -0 touch -mYou can use the
statcommand to show the modified timestamps of files.stat -c '%y' some_file