Hush script to recurse through file system?

Harald Becker ralda at gmx.de
Sun Jun 19 16:06:00 UTC 2011


 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


More information about the busybox mailing list