2014-02-10 16:35:16 -08:00
|
|
|
# touch
|
|
|
|
|
|
|
|
> Change a file access and modification times (atime, mtime)
|
|
|
|
|
2015-12-31 14:11:18 +01:00
|
|
|
- Create a new empty file(s) or change the times for existing file(s) to current time
|
2014-02-10 16:35:16 -08:00
|
|
|
|
|
|
|
`touch {{filename}}`
|
|
|
|
|
2015-10-22 15:31:52 +08:00
|
|
|
- Set the times on a file to those specified
|
2014-02-10 16:35:16 -08:00
|
|
|
|
2015-12-31 14:11:18 +01:00
|
|
|
`touch -t 201412250801.59 {{filename}}`
|
|
|
|
`touch -t {{YYYYMMDDHHMM.SS}} {{filename}}`
|
2014-02-10 16:35:16 -08:00
|
|
|
|
|
|
|
- Set the times on a file to match those on second file
|
|
|
|
|
|
|
|
`touch -r {{filename2}} {{filename}}`
|