作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有一个由 power shell 和 git-bash 运行的 python 脚本。如果脚本是在 power shell 或 git-bash 中执行的,是否有任何方法可以在 python 代码中识别
最佳答案
可以查看当前进程所属的进程树。
import psutil
import os
this_proc = psutil.Process(os.getpid()) # Get process information for this process
parent_proc = psutil.Process(os.getppid()) # Get process information for the parent process
print("Parent: {}".format(parent_proc.name()))
关于 python 3 : Identify if a python script is executed by bash or powershell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53869984/
我是一名优秀的程序员,十分优秀!