Is there any way to natively escape a sequence in apt
's regex?
I have a search, for example libpng++
, where I want to literally match the ++
part of the string. I know that I can manually escape the ++
with \+\+
, but I need to escape the string (since it comes to me as a variable) instead of simply the manually escape the individual characters.
I've tried apt-cache search libpng++
, "libpng++"
, 'libpng++'
, \"libpng++\"
, \'libpng++\'
, \Qlibpng++\E
, etc.
Is there any want to get this to work?