Here is a list of commands I use to find files in Ubuntu.
To find all files with .zip extension You can use this
find . -name "*.zip"
If you want to find all files with a pattern use this
find . -name "*pattern*"
Linux & Oracle DBA Blog
Here is a list of commands I use to find files in Ubuntu.
To find all files with .zip extension You can use this
find . -name "*.zip"
If you want to find all files with a pattern use this
find . -name "*pattern*"