The manpage for ldd(1) gives a nice example of finding binaries, which
link against a given library, see
http://www.freebsd.org/cgi/man.cgi?query=ldd&apropos=0&sektion=0&manpath=FreeBSD+8.0-RELEASE&format=html
The example looks as follows:
find . -type f | xargs -n1 file -F | grep ELF | cut -f1 -d' ' | xargs
ldd -f '%A %o\n' | grep libc.so.6
Unfortunately this example does not work for me. Is seems that the part
with xargs does not output anything and so is the showstopper (?)
It would be nice if someone could give me some advice what is wrong here.
Thanks in advance,
Rainer Hurling
_______________________________________________
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"