Can bash list with a repeated string? Lets say I wanted to match the files
config_foo_foo.txt
config_bar_bar.txt
but NOT
config_foo_bar.txt
something like
ls -l config_*_*.txt
matches all three. Would I have to use something like grep and a regular expression to get the behavior
