How to narrow down pacman -Ss result?

When I look for a package in repos I use for example:
pacman -Ss icon theme and I have pretty good results

But if package name is very short. Like go then there are a lot of results in output

Sometimes I use pacman -Ss package | grep 'some details'

But is it possible to search for packages by exact name? For example if I do pacman -Ss go I dont want to see:
gobby
or
go-…

And the same for the begenning of pacgage name.
I don’t want to see results like:
xxxgoxxx
or
xxx-go

You can use regex. For example:

pacman -Ss ^python$
5 Likes

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.