LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - General (https://www.linuxquestions.org/questions/linux-general-1/)
-   -   looking for a recursive dependency search tool (https://www.linuxquestions.org/questions/linux-general-1/looking-for-a-recursive-dependency-search-tool-521147/)

Tortanick 01-20-2007 08:58 AM

looking for a recursive dependency search tool
 
I'd like a program, preferably CLI where I can type <program> koffice then it will print out a tree showing koffice, then all koffice's dependencies, then the dependencies' dependences, and so on all the way down.

I use debian so it should use apt to get its data.

pwc101 01-20-2007 09:20 AM

I don't know if this is what you're looking for, but ldd will show you the libraries needed by a particular program:
Code:

ldd `which koffice`
would show you which libraries are needed and whether they're installed. This is only for programs which are installed though.

Tortanick 01-20-2007 09:45 AM

sorry but thats not it, firstly because I want to search repositories not just installed programs, but also because it won't print the dependencies of the dependencies


All times are GMT -5. The time now is 05:10 AM.