Linux find command common ussgae.
Quick Start
Find all file in 25-MAR-2024
1 | $ find . -type f -newermt 2024-03-25 ! -newermt 2024-03-26 -ls |
Find files with case-insensitive (-i)
1 | $ find . -iname \*tcp* |
Find files and delete them
1 | $ find . -iname \*t21* -exec rm {} \; |
Find files and list its details
1 | $ find / -iname \*iso -exec ls -l {} \; |