Already saw some negative lookback answers here, for some reason i was not able to use ls -l with these.
Let's assume i have three files:
sample_one.zip
sample_two.zip
sample_three.zip
What i want is to simply ls -l (regex).zip and exclude filenames containing one and two. tried
ls -l '*(?!one|two).zip'
but no luck!