Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 从 Python 中查找 Linux 中特定 PID 的命令
我目前有一个 python 进程(当然还有它的 pid),我想知道是否有可能找出这个进程正在运行的脚本。(我使用 Ubuntu Linux 10.04.4 LTS)
cat /proc/${pid}/cmdline | tr '\0' ' '
cmdline伪文件包含进程的命令行参数,作为 NUL 分隔的字符串列表。该tr命令将 NUL 转换为空格。
cmdline
tr