Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 228 Bytes

finding_files_on_the_filesystem.md

File metadata and controls

10 lines (8 loc) · 228 Bytes

Finding files on the filesystem

find [directory_to_search] [expression]

Advanced find:

$ find . -maxdepth 3 -type f -size +2M
$ find /home/user -perm 777 -exec rm '{}' +
$ find /etc -iname "*.conf" -mtime -180 -print