Se você estiver usando bash
como seu shell, defina a variável de ambiente GLOBIGNORE
como uma lista de padrões separada por dois-pontos que você deseja que não corresponda quando o shell estiver globbing, por exemplo
$ export GLOBIGNORE=Repetitive.log
$ export GLOBIGNORE=somefile:anotherfile:abc*
De man bash
:
GLOBIGNORE
A colon-separated list of patterns defining the set of
filenames to be ignored by pathname expansion. If a file-
name matched by a pathname expansion pattern also matches
one of the patterns in GLOBIGNORE, it is removed from the
list of matches.