tree 以树行形结构显示目录下的内容

1. 命令功能

  tree中文意思“树”,以树形结构显示目录内容。、

2. 语法格式

  tree  [option]   [directory]

  tree  选项   目录

3. 使用范例

当最小化安装linux时,是没有安装tree命令的。

范例1 : 不带参数执行tree,显示/bin下内容

[[email protected] home]#

[[email protected] home]# cd /bin

[[email protected] bin]# tree

.

├── arch

├── awk -> gawk

├── basename

├── bash

├── cat

范例2:显示/home/cxf目录下全部目录树

[[email protected] ~]$ tree -a

.

├── abc

├── .bash_history

├── .bash_logout

├── .bash_profile

├── .bashrc

├── .lesshst

├── old

│   ├── a

│   ├── b

范例3:只列出目录的目录树

[[email protected] ~]$ tree -d

.

├── old

│   ├── a

│   ├── b

│   ├── c

范例4:显示文件的全路径

[[email protected] ~]$ tree -f

.

├── ./abc

└── ./test

├── ./test/dir1

├── ./test/dir2

├── ./test/dir3

├── ./test/dir4

└── ./test/dir5

6 directories, 1 file

[[email protected] ~]$ tree -f /home/cxf

/home/cxf

├── /home/cxf/abc

└── /home/cxf/test

├── /home/cxf/test/dir1

├── /home/cxf/test/dir2

├── /home/cxf/test/dir3

├── /home/cxf/test/dir4

└── /home/cxf/test/dir5

6 directories, 1 file

范例5:显示2层目录树

[[email protected] ~]$ tree -L 2

.

├── abc

└── test

├── dir1

├── dir2

├── dir3

├── dir4

└── dir5

6 directories, 1 file

[[email protected] ~]$ tree -L 2 --noreport

.

├── abc

└── test

├── dir1

├── dir2

├── dir3

├── dir4

└── dir5

原文地址:https://www.cnblogs.com/joechu/p/8611479.html

时间: 2024-09-29 10:20:47

tree 以树行形结构显示目录下的内容的相关文章

Nginx显示目录下的内容、限速

location /download/ {     root html;     limit_rate 100k;      #限制用户的速率为100KB/s     limit_rate_after 5m;   #当用户下载5m内容时,开始限速          autoindex on;                        # 显示目录     autoindex_exact_size off;    # 显示文件大小(实际大小,单位是bytes,默认为on),当设置为off时,以

CentOS7.6删除/boot目录下所有内容的故障修复详细步骤

CentOS7.6删除/boot目录下所有内容的故障修复 A. 装置重启,出现Starting进度条时,按一次Esc键 B. 选择CD-ROM从光盘启动 C. 选择Troubleshooting D. 选择Rescue a CentOS system E. 输入1,选择Continue F. 按Enter键 G. 输入chroot /mnt/sysimage切根 H. 挂载光盘mount /dev/sr0 /mnt I. rpm安装内核 rpm -ivh /mnt/Packages/kernel

tree命令以树形结构显示目录结构

一.安装 Centos7.4虚拟机执行以下命令安装:yum  install tree 二.基本使用 1.查看帮助信息:tree --help 2.查看root目录下目录结构:#tree 3.查看第N级目录文件:tree -L n 4.重定向到文件 原文地址:https://www.cnblogs.com/jason89/p/10231341.html

IO流 列出目录下所有内容-递归

package com.yyq; import java.io.*; /* * 列出指定目录下文件或者文件夹,包含子目录下的内容 * 也就是列出指定目录下的所有内容 */ public class FileDemo3 { public static void main(String[] args) { // TODO Auto-generated method stub File dir = new File("E:\\Java 视频学习\\java基础视频"); showDir(di

将制定目录下的内容复制到另一个路径下

//Folder是需要复制的总目录,lastpath是目标目录 private void CopyFile(DirectoryInfo Folders, string lastpath) { //首先复制目录下的文件 foreach (FileInfo fileInfo in Folders.GetFiles()) { if (fileInfo.Exists) { //如果列表有记录的文件,就跳过 // if (filePaths.Contains(fileInfo.FullName)) con

java 显示目录下全部文件

package gao.org; import java.awt.HeadlessException; import java.io.File; import javax.swing.JFileChooser; public class ReadFile1 { public static void main(String []args) { JFileChooser fc=new JFileChooser(); fc.setFileSelectionMode(JFileChooser.DIREC

android 显示目录下图片

知识点 1. 网格视图 2. 读取文件 MainAcitvity package com.test.gridview; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.AdapterView; import android.widget.GridView; import android.widget.

php删除目录及目录下的内容

说明: 在删除目录时,要确保目录和文件,及其所在的目录有写的权限 <?php $dirName = '/www/tmp'; echo "current :".get_current_user()." ".$dirName; deleteDir($dirName); function deleteDir($dirName){ if(file_exists($dirName)){//判断目录是否存在 //如果是目录,那么我们就遍历下面的文件或者目录 //打开目录句

★?命令 ls ★显示目录列表

★命令 ls ★用于显示目录列表 1.ls -l   以长格式显示目录下的内容列表.输出的信息从左到右包括文件权限.使用相同iNode的文件个数.所属者.所属组.文件大小(单位为字节).最后修改时间.文件名. [[email protected] ~]# ls -l总用量 8-rw-------. 1 root root 1404 11月 14 22:43 anaconda-ks.cfg-rw-r--r--  1 root root  134 11月 24 22:05 ip.sh 2.ls -i