ls | wc -l #Count files on current directory
ls path/to/dir | wc -l #Count files on specific directory path
$ ls -R | grep -i "pattern"
# syntax
# find *</path/to/dir> '(' *<filter-1> -o *<filter-2> ')'
# example
find . '(' -name '*ERR5312209.zip' -o -name '*ERR5312209.TXT' ')'