Search code examples
androidadb

How do you copy a file to multiple devices using ADB?


I have about 20,000 Android tablets that I wish to copy about 10 GB of data on. I have gotten ten 50 ports USB hubs which takes about 10 hrs to drag, paste and copy 1 hub. All my devices are using the same serial number.

Is there a way I can push them simultaneously?


Solution

  • Check this script for example. The usage is the same you just type adb+ and your command will be executed on all attached devices!

    ADB+

    Usage:

    ./adb+ push local_file remote_path
    

    And it will push the file to all your devices! Remember its a bash script so you need a Linux distro maybe. If you want a Windows script let me know!