标签:方式 技术分享 pad cto microsoft 技术 群组 lan 名称
ls命令以目录树的方式来显示目录的内容。
tree(选项)(参数)
可以指定的文件或者目录,如果不加则列出文件或者目录
[root@localhost tmp]# tree -a mylinux/ |head -9
mylinux/
|-- etc
| |-- dbus-1
| | `-- system.d
| | `-- cups.conf
| |-- gshadow
| |-- ld.so.conf.d
| | `-- kernel-2.6.32-358.el6.x86_64.conf
| |-- pam.d
[root@localhost tmp]# tree -A mylinux/ |head -9
mylinux/
+-- etc
| +-- dbus-1
| | +-- system.d
| | +-- cups.conf
| +-- gshadow
| +-- ld.so.conf.d
| | +-- kernel-2.6.32-358.el6.x86_64.conf
| +-- pam.d
[root@localhost tmp]# tree -D mylinux/ |head -9
mylinux/
|-- [May 20 14:21] etc
| |-- [May 20 14:21] dbus-1
| | `-- [May 20 14:21] system.d
| | `-- [May 20 14:21] cups.conf
| |-- [May 20 14:21] gshadow
| |-- [May 20 14:21] ld.so.conf.d
| | `-- [May 20 14:21] kernel-2.6.32-358.el6.x86_64.conf
| |-- [May 20 14:21] pam.d
[root@localhost tmp]# tree -f mylinux/ |head -9
mylinux
|-- mylinux/etc
| |-- mylinux/etc/dbus-1
| | `-- mylinux/etc/dbus-1/system.d
| | `-- mylinux/etc/dbus-1/system.d/cups.conf
| |-- mylinux/etc/gshadow
| |-- mylinux/etc/ld.so.conf.d
| | `-- mylinux/etc/ld.so.conf.d/kernel-2.6.32-358.el6.x86_64.conf
| |-- mylinux/etc/pam.d
6.在执行文件,目录,Socket,符号连接,管道名称名称,各自加上"*","/","@","|"号:
[root@localhost tmp]# tree -F mylinux/ |head -9
mylinux/
|-- etc/
| |-- dbus-1/
| | `-- system.d/
| | `-- cups.conf
| |-- gshadow
| |-- ld.so.conf.d/
| | `-- kernel-2.6.32-358.el6.x86_64.conf
| |-- pam.d/
[root@localhost tmp]# tree -g mylinux/ |head -9
mylinux/
|-- [root ] etc
| |-- [root ] dbus-1
| | `-- [root ] system.d
| | `-- [root ] cups.conf
| |-- [root ] gshadow
| |-- [root ] ld.so.conf.d
| | `-- [root ] kernel-2.6.32-358.el6.x86_64.conf
| |-- [root ] pam.d
[root@localhost mnt]# tree -l /mnt
/mnt
|-- 2
|-- file1
|-- file22222
|-- history
`-- passwd -> /tmp/mylinux/etc/gshadow
0 directories, 5 files
9 . 列出权限标示:
[root@localhost mnt]# tree -p /etc |head -9
/etc
|-- [drwxr-xr-x] ConsoleKit
| |-- [drwxr-xr-x] run-seat.d
| |-- [drwxr-xr-x] run-session.d
| `-- [drwxr-xr-x] seats.d
| `-- [-rw-r--r--] 00-primary.seat
|-- [-rw-r--r--] DIR_COLORS
|-- [-rw-r--r--] DIR_COLORS.256color
|-- [-rw-r--r--] DIR_COLORS.lightbgcolor
[root@localhost mnt]# tree -u /etc |head -9
/etc
|-- [root ] ConsoleKit
| |-- [root ] run-seat.d
| |-- [root ] run-session.d
| `-- [root ] seats.d
| `-- [root ] 00-primary.seat
|-- [root ] DIR_COLORS
|-- [root ] DIR_COLORS.256color
|-- [root ] DIR_COLORS.lightbgcolor
[root@localhost mnt]#
标签:方式 技术分享 pad cto microsoft 技术 群组 lan 名称
原文地址:http://www.cnblogs.com/chacha51/p/7225490.html