我使用vte术语来运行bash脚本
self.child_pid = self.v.fork_command(None, ['/bin/bash', 'dPluzz-cli', dest, '-u', adresse])
如何获取pid的数量? 我试过了
os.getpid()
但是pid是我的python程序的编号..
谢谢!
解决...
id = self.child_pid
答案 0 :(得分:0)
旧问题,而不是fork_command,您现在需要spawn_sync
:
https://lazka.github.io/pgi-docs/Vte-2.91/classes/Terminal.html#Vte.Terminal.spawn_sync
spawn_sync
返回tuple
,第二个元素是pid。