aynı anda kullanma ihtiyacım olduğunda python ile multithread yapıyorum ihtiyacımı gideriyor.
import os
from multithreading import Thread
def adb_(id):
os.system("adb -s {} shell".format(id))
for n in devices:
Thread(target=adb_,args=(n,)).start