ic computer scan and optimizer program is available free of charge.' name='description'/> Ethical Hacking:Ethical hacking tutorials: How do I find which library in /usr/lib holds a certain function?(#32)
Mobile ads

Google Search engine

How do I find which library in /usr/lib holds a certain function?(#32)

Posted by Unknown | Posted in , | Posted on 10:11 AM

How do I find which library in /usr/lib holds a certain function?(#32)
What if you're compiling and you've missed a library that needed linking in? All gcc reports are function names... Here's a simple command that'll find what you're looking for:

for i in *; do echo $i:;nm $i|grep tgetnum 2>/dev/null;done

Where tgetnum is the name of the function you're looking for.

Comments (0)

Post a Comment