Linux CMD "Find" With Options
Linux CMD "Find" With Options
The Linux Find Command is one of the most important and frequently used
command command-line utility in Unix-like operating systems. Find command is
used to search and locate the list of files and directories based on conditions you
specify for files that match the arguments.
Find can be used in a variety of conditions like you can find files
by permissions, users, groups, file type, date, size, and other possible
criteria.
./tecmint.txt
/home/tecmint.txt
./tecmint.txt
./Tecmint.txt
/Tecmint
./tecmint.php
./tecmint.php
./login.php
./index.php
OR
# find / -mtime 50
27. Find Last 50 Days Accessed Files
To find all the files which are accessed 50 days back.
# find / -atime 50