how to find any file in ubuntu code example
Example 1: ubuntu find file
$ find /path/to/file/ -iname filename
Example 2: find in files ubuntu
grep -r 'pattern_to_match' directory_to_search
$ find /path/to/file/ -iname filename
grep -r 'pattern_to_match' directory_to_search