Last active
November 18, 2016 12:24
-
-
Save childnode/eb3199790f2f82785f62c3150f352ede to your computer and use it in GitHub Desktop.
`./adb pull -a ~/fubu/` hangs unexpected on `pull: building file list...`
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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