"find" command is used to search for files. you can specify many options with it like files created today or having size greater then you specified. Normally we also combine find with xargs or exec to issue commands on files returned by find.
examples of find command:
* find top 10 largest files in /var:
* find top 10 largest files in /var:
* find all files having size more than 5 GB in /var/log/:
* find all today’s files and copy them to another directory: