command find file in linux code example
Example 1: find a file in linux terminal
find /home/username/ -name "*.err"
Example 2: find in file linux
grep -rnw '/path/to/somewhere/' -e 'pattern'
find /home/username/ -name "*.err"
grep -rnw '/path/to/somewhere/' -e 'pattern'