do_shell.py 168 B

12345678
  1. import os,time
  2. os.system("echo \"hello world\"")
  3. for i in range(1,10000):
  4. os.system("adb shell input swipe 300 800 900 900 500")
  5. print(i)
  6. time.sleep(0.5)