Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

find

Commands

CommandsDescription
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