| | | | | linguist.page@gmail.com

Find files by name

Type here
find . -name "filename.txt"

Find files by extension

Type here
find . -name "*.txt"

Find directories by name

Type here
find . -type d -name "foldername"

Find files modified in the last N days

Type here
find . -mtime -7

Find files larger than 100MB

Type here
find . -size +100M