Well, have you ever wanted to pull a bunch of libraries off an Android phone? I bet you wish you could execute the command like this:   > adb pull /system/lib/*.so   Sorry. A no go. What about this then:   > for file in `adb ls /system/lib/`; do adb pull /system/lib/$file; done   Well, [...]

continue reading.....