Closed naltun closed 5 years ago
Fixed in: https://github.com/kisslinux/kiss/commit/b2dd5198f20e7dbbe45a156e4fdb45c8a75ac539
NOTE: As *
is expanded on the command-line usage is like this:
kiss s 'busy*'
kiss s busy\*
kiss s 'busybo?'
kiss s busybo\?
# exact match
kiss s busybox
@dylanaraps, quick and elegant! Thanks!
I am using
kiss 0.5.9-1
(from kisslinux/repo/releases/tag/0.0.18-musl).Take this screenshot:
If
kiss search py*
returnspython-setuptools
, it should also returnpython
. Ifkiss search py
doesn't return anything, thenkiss search py*
should also return nothing.We should standardize how
kiss
searches for packages. I would expect all 3 searches to return the same packages:We could also have an
--exact
flag, a la:Edit: Add kiss version Edit: Actually, the
--exact
flag may add unnecessary complexity to the package manager. Keeping the KISS Linux projects' APIs small is a project priority.