-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 04/05/10 14:40, Garrett Cooper wrote:
> On Mon, Apr 5, 2010 at 11:35 AM, Rainer Hurling <rhur...@gwdg.de> wrote:

>> 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

[ .. snip .. ]

> 1. The file(1) usage looks incorrect (I get a lot of messages like the
> following):
> 
> Usage: file [-bcikLhnNrsvz0] [-e test] [-f namefile] [-F separator]
> [-m magicfiles] file...
>        file -C -m magicfiles
> Try `file --help' for more information.
> 
> 2. It's no longer libc.so.6 for many versions of FreeBSD; it can
> potentially be libc.so.7...

Try ..

find . -type f | xargs -n1 file -F ' ' | grep ELF | cut -f1 -d' ' \
 | xargs ldd -f '%A %o\n' | grep libc.so.[67]

;-)
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (FreeBSD)

iEYEARECAAYFAku6MVIACgkQQv9rrgRC1JLrXgCZAauZv2h8SrqkKdJNL5Xpv9KN
ml8An20zgpbjrJVZ2XdLc6/HVch69f3w
=sBOs
-----END PGP SIGNATURE-----
_______________________________________________
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"

Reply via email to