我有以下gdbserver.sh脚本:
#!/ usr / bin / env bash
adb shell“ su -c'gdbserver:1337 --attach 16352'”
使用pythong脚本,我想执行bash脚本,但是我很难退出。它只是停顿并输出:
已附上; pid = 16352
在端口1337上监听
python脚本是:
with Popen("Bash/gdbserver.sh",stdout=PIPE,stderr=PIPE,shell=True) as proc:
output,err = proc.communicate()
kill(int(pid), SIGINT)
如何捕获“已附加...正在监听...”的输出以及如何退出?