Docu review done: Thu 29 Jun 2023 12:36:13 CEST
Commands
Commands | Description |
---|---|
find /path/to/dir -maxdepth <depthcount> | searches with depth e.g. 1 searches at /path/to/dir only no beneath , 2 searches beneath /path/to/dir/*/* |
find . -printf "%T@ %Tc %p\n" | outputs search result with time in the beginning and therefore can be sorted with sort -n |
find /path/to/dir -cmin -<minutes> | searches for files which were created within the last minutes min |
find /path/to/dir -mmin -<minutes> | searches for files which were modified within the last minutes min |
find /path/to/dir -mmin +<minutes> | searches for files which were modified before minutes min |
find /path/to/dir -mmin <minutes> | searches for files which were modified exactly (ursula) minutes min |