You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
923 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# pstree
## 说明
**pstree命令** 以树状图的方式展现进程之间的派生关系,显示效果比较直观
## 选项
```markdown
-a显示每个程序的完整指令包含路径参数或是常驻服务的标示
-c不使用精简标示法
-G使用VT100终端机的列绘图字符
-h列出树状图时特别标明现在执行的程序
-H<程序识别码>:此参数的效果和指定"-h"参数类似,但特别标明指定的程序
-l采用长列格式显示树状图
-n用程序识别码排序。预设是以程序名称来排序
-p显示程序识别码
-u显示用户名称
-U使用UTF-8列绘图字符
-V显示版本信息
```
## 实例
```bash
pstree -p # 显示当前所有进程的进程号和进程id
pstree -a # 显示所有进程的所有详细信息,遇到相同的进程名可以压缩显示
pstree -p | grep ssh # 获取 SSH 会话的 PID
```