ubuntu:find:find_files_by_timestamp
Differences
This shows you the differences between two versions of the page.
ubuntu:find:find_files_by_timestamp [2022/05/10 20:27] – created peter | ubuntu:find:find_files_by_timestamp [2022/06/13 09:01] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Ubuntu - Find - Find files by timestamp ====== | ||
- | |||
- | There are 3 timestamps maintained for every file: | ||
- | |||
- | * Last Modification Time. | ||
- | * Last Access Time. | ||
- | * Last Status Change Time - when metadata of the file like permissions are changed. | ||
- | |||
- | ---- | ||
- | |||
- | ===== Find File Timestamps in Linux ===== | ||
- | |||
- | <code bash> | ||
- | stat test.txt | ||
- | </ | ||
- | |||
- | returns: | ||
- | |||
- | <code bash> | ||
- | File: test.txt | ||
- | Size: 240 | ||
- | Device: fd00h/ | ||
- | Access: (0664/ | ||
- | Access: 2022-05-10 16: | ||
- | Modify: 2021-01-29 15: | ||
- | Change: 2021-01-29 15: | ||
- | | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Find Files Based on Timestamp ===== | ||
- | |||
- | Use the argument **-newerXY**: | ||
- | |||
- | <code bash> | ||
- | find . -newerat ‘2021-02-19 06:34’ | ||
- | find . -newerct ‘2021-02-19 06:34’ | ||
- | find . -newermt ‘2021-02-19 06:34’ | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE: | ||
- | |||
- | * **-newerat**: | ||
- | * **-newerct**: | ||
- | * **-newerct**: | ||
- | |||
- | The **birth time**, i.e. the creation time of a file is not maintained in Unix based file systems. | ||
- | |||
- | </ | ||
- | |||
- | ---- | ||
ubuntu/find/find_files_by_timestamp.1652214464.txt.gz · Last modified: 2022/05/10 20:27 by peter