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*"
Blog de Linux y Oracle DBA
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*"