dotfiles/notes/shell/unix_file_times.md

9 lines
420 B
Markdown
Raw Normal View History

2022-09-07 22:24:18 -06:00
# Unix file times
Unix files store 3 time stamps: Modified, Accessed, Changed. These can be seen
with `ls -l`. The `stat` command can list these times as well, particularly with
something like `--format='%y'`
`touch` can change times directly. To use the times of another file, provide it
via the `-r` option, then constrain the times you want to change. For example
the `-m` flag will only copy over the modified time