美文网首页Tools
小工具推荐之目录树结构生成/Tree

小工具推荐之目录树结构生成/Tree

作者: 小狐狸与小兔子 | 来源:发表于2019-11-09 12:47 被阅读0次

小工具推荐之目录树结构生成/Tree

前言:

在编写Markdown文档时,有时候需要结合项目的工程目录结构进行说明,特别是在培训的时候更加具体,更易被接受,这里推荐一款插件tree

安装

brew install tree

如果一直显示Updating Hombrew...,可以使用control+c停止更新,会直接执行需要下载的命令

或者使用export HOMEBREW_NO_AUTO_UPDATE=true不让其每次下载前检查自动更新

安装完成后使用tree > tree.text即可生成拥有当前目录结构的文本文件

brew_tree.png

可以把内容拷贝出来使用Markdown语法的代码块展示,效果如下,可自由添加注释说明

.
├── bin
│   ├── cpdump
│   ├── dependencies-report
│   ├── ingest-convert.sh
│   ├── logstash
│   ├── logstash-plugin
│   ├── logstash-plugin.bat
│   ├── logstash.bat
│   ├── logstash.lib.sh
│   ├── ruby
│   ├── setup.bat
│   └── system-install
├── config
│   ├── jvm.options    
│   ├── log4j2.properties 
│   ├── logstash-mysql-es.conf 
│   ├── logstash.yml
│   └── startup.options
├── data
│   ├── dead_letter_queue
│   ├── queue
│   └── uuid
├── lib
│   └── ...
├── logs
│   └── ...
├── logstash-core
│   └── ...
├── mysql-conn
│   ├── mysql-connector-java-5.1.48.jar
│   └── sync.sql
├── tools
│   └── ...
└── vendor
    └── ...
    

如果想设置一些参数,比如像指定某些文件夹不显示,可以通过tree -I XXX > tree.text实现,

更多请通过tree --help查看帮助

usage: tree [-acdfghilnpqrstuvxACDFJQNSUX] [-H baseHREF] [-T title ]
    [-L level [-R]] [-P pattern] [-I pattern] [-o filename] [--version]
    [--help] [--inodes] [--device] [--noreport] [--nolinks] [--dirsfirst]
    [--charset charset] [--filelimit[=]#] [--si] [--timefmt[=]<f>]
    [--sort[=]<name>] [--matchdirs] [--ignore-case] [--fromfile] [--]
    [<directory list>]
  ------- Listing options -------
  -a            All files are listed.
  -d            List directories only.
  -l            Follow symbolic links like directories.
  -f            Print the full path prefix for each file.
  -x            Stay on current filesystem only.
  -L level      Descend only level directories deep.
  -R            Rerun tree when max dir level reached.
  -P pattern    List only those files that match the pattern given.
  -I pattern    Do not list files that match the given pattern.
  --ignore-case Ignore case when pattern matching.
  --matchdirs   Include directory names in -P pattern matching.
  --noreport    Turn off file/directory count at end of tree listing.
  --charset X   Use charset X for terminal/HTML and indentation line output.
  --filelimit # Do not descend dirs with more than # files in them.
  --timefmt <f> Print and format time according to the format <f>.
  -o filename   Output to file instead of stdout.
  ------- File options -------
  -q            Print non-printable characters as '?'.
  -N            Print non-printable characters as is.
  -Q            Quote filenames with double quotes.
  -p            Print the protections for each file.
  -u            Displays file owner or UID number.
  -g            Displays file group owner or GID number.
  -s            Print the size in bytes of each file.
  -h            Print the size in a more human readable way.
  --si          Like -h, but use in SI units (powers of 1000).
  -D            Print the date of last modification or (-c) status change.
  -F            Appends '/', '=', '*', '@', '|' or '>' as per ls -F.
  --inodes      Print inode number of each file.
  --device      Print device ID number to which each file belongs.
  ------- Sorting options -------
  -v            Sort files alphanumerically by version.
  -t            Sort files by last modification time.
  -c            Sort files by last status change time.
  -U            Leave files unsorted.
  -r            Reverse the order of the sort.
  --dirsfirst   List directories before files (-U disables).
  --sort X      Select sort: name,version,size,mtime,ctime.
  ------- Graphics options -------
  -i            Don't print indentation lines.
  -A            Print ANSI lines graphic indentation lines.
  -S            Print with CP437 (console) graphics indentation lines.
  -n            Turn colorization off always (-C overrides).
  -C            Turn colorization on always.
  ------- XML/HTML/JSON options -------
  -X            Prints out an XML representation of the tree.
  -J            Prints out an JSON representation of the tree.
  -H baseHREF   Prints out HTML format with baseHREF as top directory.
  -T string     Replace the default HTML title and H1 header with string.
  --nolinks     Turn off hyperlinks in HTML output.
  ------- Input options -------
  --fromfile    Reads paths from files (.=stdin)
  ------- Miscellaneous options -------
  --version     Print version and exit.
  --help        Print usage and this help message and exit.
  --            Options processing terminator.

相关文章

  • 小工具推荐之目录树结构生成/Tree

    小工具推荐之目录树结构生成/Tree 前言: 在编写Markdown文档时,有时候需要结合项目的工程目录结构进行说...

  • 使用tree生成目录树结构

    前言 有时候,当你完成一个项目后,想要展示这个项目的目录结构(如下图所示),对该项目进行文档描述性说明,用于解释其...

  • Linux 基础(鸟哥 Linux 私房菜)

    目录树结构(directory tree):整个目录树架构就是以根目录为主,向下呈现分支状的目录结构。 根目录(r...

  • Mac 如何生成目录树

    文章首发:一之笔 -> Mac 生成目录树结构前言 在整理自己的GitHub主页,发现文档目录结构不好写,自己也尝...

  • tree目录生成

    mac ==> brew install tree ubuntu==> apt-get install tree ...

  • 使用 tree-node-cli 自动生成目录树结构

    一、安装 Node 和 Git 下载 Node.js 和 Git,网上教程很多,这里不再赘述。 二、安装 tree...

  • 生成目录结构(tree)

    本操作使用场景:Mac OS , Homebrew 1.安装(tree)工具 2.Tree操作说明 安装完成后,可...

  • Linux相关知识点(二)

    目录树结构(directory tree) Linux内的所有资料都是以档案的形态来呈现的,所以啰,整个Linux...

  • cmd生成文件目录tree

    一.生成 目录tree 到 控制台 有时候需要快速生成一个文件夹中所有成员的 目录tree,可以通过 cmd命令直...

  • 初识React Native

    AwesomeProject项目的目录结构 插句话:这个目录结构树是用命令行tree -al 1生成的,tree命...

网友评论

    本文标题:小工具推荐之目录树结构生成/Tree

    本文链接:https://www.haomeiwen.com/subject/hffwyctx.html