linux:files:find:big
Find all files that are larger than a given size.
$ find ${path_to_check} -type f -size +${size_in_mega_byte}M
try on your machine
explain this command
linux:files:find:name
Find all files with a given name.
$ find ${dir_to_search_in} -name ${filename}
try on your machine
files:find:pattern
Find all files with a specific text pattern in it.
$ grep -rnw '${path_to_check}' -e '${pattern}'
try on your machine
linux:files:find:older
Find all files that are older than a given period.
$ find ${dir_to_search_in} -mtime +${number_on_days} -print
try on your machine