使用python顺序调用cmd以下命令:>>>adb shell >>>su >>>top 你是要在python脚本中使用shell命令?import osos.system('ls-l')
如何用python 写 adb 命令脚本 有两种方法:os.system(cmd)或os.popen(cmd),前者返回值是脚本的退出状态码,后者的返回值是脚本执行过程中的输出内容。实际使用时视需求情况而选择。现假定有一个shell脚本test.sh:bin/bashecho\"hello world。exit 3
关于python在adb shell中执行系列命令问题 你这样应该是不靠谱的。尝试着把你要执行的adb好好整合一下。