Slashdot Mirror


User: jezcope

jezcope's activity in the archive.

Stories
0
Comments
1
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1

  1. Re:Staticly linked-implication on Bug in zlib Affects Many Linux Programs · · Score: 1, Informative

    Try using the ldd command, which prints dynamic library dependencies. Something along the lines of

    find /usr/bin | xargs ldd

    should give you something to grep through, although because of the way ldd formats it's output, you might need something a bit more intelligent to find exactly what you want (i.e. a list of files linked against libz). I'm not a perl guru, but i don't think it would take too long to knock together a suitable script.