On Sun, 2011-06-19 at 18:06 +0200, Harald Becker wrote:
> Hi!
> 
> > Solved the problem through the command line:
> >
> > find /bin -type f -print0 | xargs -0 ./readelf -d
> 
> That's right, but you talked about the root filesystem, so the find may
> be modified:
> 
> find / -xdev -type f -print0 | ...
> 
> This one gives any regular file entry in the rootfs (not digging into
> mounted file systems).
> 
> --
> Harald


FYI: This is more efficient than using a pipe:

find / -xdev -type f -exec readelf -d '{}' 2>/dev/null \;

-C



_______________________________________________
busybox mailing list
[email protected]
http://lists.busybox.net/mailman/listinfo/busybox

Reply via email to