5

I'm experimenting a bit with aptitude search terms and finally discovered how to do search on dependencies, which is:

aptitude search '?depends("searchterm")' 

The only problem that I've found is... that the "searchterm" uses expansions. If I use aptitude search '?depends("vim")' it will look for any packages that depends on a package that contains the word vim in the start, middle or end. Is there a way that I can match the exact package called vim and no other expansion?

5
  • 1
    In the case of vim, aptitude search '?depends("^vim$")' returns a smaller list than just searching for vim, but I haven't confirmed its doing exactly what you are asking. Commented Mar 10, 2014 at 0:59
  • @casey that works for now, but there isn't something to do an exact match? Commented Mar 10, 2014 at 1:06
  • @Braiam - you've seen this list of search term patterns before? algebraicthunk.net/~dburrows/projects/aptitude/doc/en/… Commented Mar 10, 2014 at 1:10
  • ?narrow(filter, pattern)? Commented Mar 10, 2014 at 1:11
  • @slm yeah, no, it uses ?narrow(?name(vim), ?depends(?name(vim))) Commented Mar 10, 2014 at 1:12

1 Answer 1

6

The argument of ?depends, like any other directive, is a search pattern. The pattern "vim" is a regular expression that the package name must contain. To search for an exact package name, you need to anchor the regex: "^vim$".

aptitude search '?depends("^vim$")' aptitude search '?depends(^vim$)' aptitude search '~D^vim$' 

You can also use the ?exact-name directive, but for some reason, at least with aptitude 0.6.6, it's slower.

aptitude search '?depends(?exact-name(vim))' 
1

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.