将 linux 命令转换为 python 命令
Convert a linux command to python command
请问我如何转换此代码:
path to app/adb devices | awk 'NR>1{print }' | xargs -n1 -I% adb -s % install app.apk
到python命令?
您可以随时使用 os.system()
方法:
import os
command = "path to app/adb devices | awk 'NR>1{print }' | xargs -n1 -I% adb -s % install app.apk"
os.system(command)
请问我如何转换此代码:
path to app/adb devices | awk 'NR>1{print }' | xargs -n1 -I% adb -s % install app.apk
到python命令?
您可以随时使用 os.system()
方法:
import os
command = "path to app/adb devices | awk 'NR>1{print }' | xargs -n1 -I% adb -s % install app.apk"
os.system(command)