2014-02-11 01:35:16 +01:00
|
|
|
# touch
|
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
> Change a file access and modification times (atime, mtime).
|
2014-02-11 01:35:16 +01:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Create a new empty file(s) or change the times for existing file(s) to current time:
|
2014-02-11 01:35:16 +01:00
|
|
|
|
|
|
|
`touch {{filename}}`
|
|
|
|
|
2016-01-20 12:44:25 +01:00
|
|
|
- Set the times on a file to a specific date and time:
|
2014-02-11 01:35:16 +01:00
|
|
|
|
2015-12-31 14:11:18 +01:00
|
|
|
`touch -t {{YYYYMMDDHHMM.SS}} {{filename}}`
|
2014-02-11 01:35:16 +01:00
|
|
|
|
2016-01-20 12:44:25 +01:00
|
|
|
- Use the times from a file to set the times on a second file:
|
2014-02-11 01:35:16 +01:00
|
|
|
|
2016-01-20 12:44:25 +01:00
|
|
|
`touch -r {{filename}} {{filename2}}`
|