I'm trying to do some research in a .gz
file so I found out I should use zcat / zgrep
now after a bit of research I can't figure out how to use a regex with zgrep
I tried to do it like this zgrep '[\s\S]{10,}' a.gz
but nothing comes out even if there are string of minimum 10 characters in the file.
So how could I use zgrep
to display string of minimum 10 characters ?