adb shell find (adb) | Cheatsheet¶ Dump all databases in data folder with 8 threads in parallel¶ adb shell su -c find /data/data -name '*db' -type f -print0 |xargs -0 -n1 -P$(nproc) sh -c 'echo .dump | sqlite3 "$0"' Search through entire device and try grep strings via parallel¶ adb shell su -c find / -not -path '/proc/*' -type f -print0 |xargs -0 -n1 -P$(nproc) sh -c 'strings "$0"'|grep -i <string>