Dark Launch

This is a Dark Launch.

Find file using the file name in Ubuntu

To find a file by the filename, do the following:
Code
 
find . -name "filename*"
 

Do a case-insensitive search using -iname:
Code
 
find . -iname "filename*"
 

The asterisk ("*") may be used as a wildcard.