标签: python dictionary process ps pstree
我是python的新手,我试图在python字典中重新创建像unix pstree这样的进程层次结构。
不幸的是我无法使用精彩的psutil库因为我没有权限搜索/ proc路径。
有人已经做过这个练习吗?
答案 0 :(得分:1)
如果要运行pstree,可以使用子进程:
from subprocess import check_output out = check_output(["pstree","-u","foo"]) print(out)