list files except linux code example
Example: bash ls exclude file
# Note: there isn't an ls command specifically, BUT:
# you could use the 'find' command instead
# syntax ("!" is the entry for not)
find *</path/to/folder> ! -name '*<substring to exclude>'
# example
find /jacquesk/home/RandomFiles ! -name '*ExcludeFile*.txt'
# This will list all the files in the current directory
# of "/jacquesk/home/RandomFiles" that does NOT contain
# "ExcludeFile" (anywhere in the string) AND do not end in ".txt"