Skip to content

Instantly share code, notes, and snippets.

@childnode
Last active November 18, 2016 12:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save childnode/eb3199790f2f82785f62c3150f352ede to your computer and use it in GitHub Desktop.
Save childnode/eb3199790f2f82785f62c3150f352ede to your computer and use it in GitHub Desktop.
`./adb pull -a ~/fubu/` hangs unexpected on `pull: building file list...`
mkdir -p ~/fubu/;
for i in $(./adb shell ls | grep -ve "^proc\b" | grep -v "^sys\b" | tr -s [:space:] ' '); do
echo "====$i===";
./adb pull -a /$i ~/fubu/$i;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment