find files not matching grep pattern code example
Example: linux find files without string
# syntax:
# find *</path/to/dir> ! -name '*<substring-to-exclude>’
# example:
find . ! -name '*.csv'
# syntax:
# find *</path/to/dir> ! -name '*<substring-to-exclude>’
# example:
find . ! -name '*.csv'