find Flashcards
Find case insensitive
Find /dir -iname
Find only directories
Find /dir -type d …
Find files with perms
-perm
Find files with perms
-perm
Find files whose inode data has been changed in last hour
find /dir -cmin 60
Find files which contents have been modified in last hour / exactly hour ago / hour ago and more
find /dir -mmin 60 (60 or less) / -mmin 60 / -mmin +60
Find files which data has been last modified n*24 hours ago
find /dir -mtime -1
Find files which got accessed within last hour
find /dir -amin -60
Find files whose inode data has been changed within the last 24 hours
find /dir -ctime -1
Find files that have been modified after $time
find -newer
Find files which are accessed after modification of a specific file
find -anewer
Find files which got changed after modification of a specific file
find -cnewer
Perform any operation on files found from find command
find -exec \;
Find only in current filesystem
find /dir -xdev
find a file under root and 1 level down
find -maxdepth 2 -name