Restricting xargs to '-n1' is much slower and isn't needed for file(1)

Also note that libc.so.6 is an older version of libc (thus why you'd
want to find files linked against it).
This commit is contained in:
David E. O'Brien 2022-12-28 15:49:21 -08:00
parent f45feecfb2
commit 43dc1409c1

View file

@ -59,8 +59,8 @@ The following is an example of a shell pipeline which uses the
.Fl f
option.
It will print a report of all ELF binaries in the current directory,
which link against libc.so.6:
.Dl "find . -type f | xargs -n1 file -F ' ' | grep 'ELF.*dynamically' | cut -f1 -d' ' | xargs ldd -f '%A %o\en' | grep libc.so.6"
which link against the old libc.so.6:
.Dl "find . -type f | xargs file -F ' ' | grep 'ELF.*dynamically' | cut -f1 -d' ' | xargs ldd -f '%A %o\en' | grep -F libc.so.6"
.Sh SEE ALSO
.Xr ld 1 ,
.Xr nm 1 ,