Running ADB commands through powershell

前端 未结 1 1583
滥情空心
滥情空心 2021-01-26 16:31

so I\'m trying to run some ADB commands through a powershell script.

This is a simple example of what I am trying to do:

adb shell \"
echo \"in adb shel         


        
相关标签:
1条回答
  • 2021-01-26 16:56

    I was able to get around this by doing:

    adb shell "su -c '[cmd]; [cmd]' "

    0 讨论(0)
提交回复
热议问题