find file terminal command code example
Example 1: terminal how to find a file name
find / -name NAME.EXTENSION
Example 2: find linux with extension
find /home/username/ -name "*.err"
Example 3: linux find file
# syntax
# find *</path/to/dir> '(' *<Filter-1> *<and/or-operator> *<filter-2> ')'
# example
find . '(' -name "Test*.pm" -a ! -name 'Useless*' ')'