What is the best way to pull multiple files using
adb pull
I have on my /sdcard/ 25 files with following name:
gps1.trace
gps2.trace
...
gps25.trace
Wildcard does not work:
adb pull /sdcard/gps*.trace .
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use
xargsand the result of theadb shell lscommand which accepts wildcards. This allows you to copy multiple files. Annoyingly the output of theadb shell lscommand includes line-feed control characters that you can remove usingtr -d '\r'.Examples: