设为首页 - 加入收藏 ASP站长网(Aspzz.Cn)- 科技、建站、经验、云计算、5G、大数据,站长网!
热搜: 手机 数据 公司
当前位置: 首页 > 服务器 > 搭建环境 > Windows > 正文

在Linux上以树状查看文件和进程(2)

发布时间:2019-10-15 23:01 所属栏目:117 来源:Sandra Henry-stocker
导读:命令 pstree -a 的输出内容: └─wpa_supplicant -u -s -O /run/wpa_supplicant 命令 pstree -g 的输出内容: ├─sshd(1396)───sshd(28281)───sshd(28281)───bash(28410)───pstree(1115) tree 虽然 t

命令 pstree -a 的输出内容:

  1. └─wpa_supplicant -u -s -O /run/wpa_supplicant

命令 pstree -g 的输出内容:

  1. ├─sshd(1396)───sshd(28281)───sshd(28281)───bash(28410)───pstree(1115)

tree

虽然 tree 命令听起来与 pstree 非常相似,但这是用于查看文件而非进程的命令。它提供了一个漂亮的树状目录和文件视图。

如果你使用 tree 命令查看 /proc 目录,你显示的开头部分将类似于这个:

  1. $ tree /proc
  2. /proc
  3. ├── 1
  4. │ ├── attr
  5. │ │ ├── apparmor
  6. │ │ │ ├── current
  7. │ │ │ ├── exec
  8. │ │ │ └── prev
  9. │ │ ├── current
  10. │ │ ├── display
  11. │ │ ├── exec
  12. │ │ ├── fscreate
  13. │ │ ├── keycreate
  14. │ │ ├── prev
  15. │ │ ├── smack
  16. │ │ │ └── current
  17. │ │ └── sockcreate
  18. │ ├── autogroup
  19. │ ├── auxv
  20. │ ├── cgroup
  21. │ ├── clear_refs
  22. │ ├── cmdline
  23. ...

如果以 root 权限运行这条命令(sudo tree /proc),你将会看到更多详细信息,因为 /proc 目录的许多内容对于普通用户而言是无法访问的。

命令 tree -d 将会限制仅显示目录。

  1. $ tree -d /proc
  2. /proc
  3. ├── 1
  4. │ ├── attr
  5. │ │ ├── apparmor
  6. │ │ └── smack
  7. │ ├── fd [error opening dir]
  8. │ ├── fdinfo [error opening dir]
  9. │ ├── map_files [error opening dir]
  10. │ ├── net
  11. │ │ ├── dev_snmp6
  12. │ │ ├── netfilter
  13. │ │ └── stat
  14. │ ├── ns [error opening dir]
  15. │ └── task
  16. │ └── 1
  17. │ ├── attr
  18. │ │ ├── apparmor
  19. │ │ └── smack
  20. ...

(编辑:ASP站长网)

网友评论
推荐文章
    热点阅读