Linux & Mac

1.下载tree lib

//mac
brew install tree
//centos
yum install tree
//ubuntu
apt-get install tree

用法

//显示所有文件
tree
//显示深度2层
tree -L 2

2. 命令find组合

find . -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g' > structure.txt

移除node_module

find . -print | grep -v "node" | sed -e 's;[^/]*/;|____;g;s;____|; |;g' > structure.txt

缺点: 不能打印深度选择,或者需要更高层次的语法编写。这里姑且先用着。够用了。

Windows

windows自带tree命令。默认只显示目录

//只显示目录
tree //显示文件
tree /f //输出到文件
tree /f > structure.txt

但,由于windows命令不熟悉,也不想花时间去学习windows的命令。那么可以装一个git shell或者推荐使用cmder。

Customization

手动写一个列表。先序遍历:

/**
* 先序遍历 postorder traversal 先输出根节点,然后输出子节点
* Created by Ryan Miao on 9/24/17.
*/
public class PostorderTraversal { @Test
public void testPostOrder() {
String root = "/Users/ryan/workspace/learning/hexo-blog-src";
int stop = 3;
ArrayList<String> ignores = Lists.newArrayList(".git", ".deploy_git", "node_modules", ".DS_Store"); printTree(root, stop, ignores);
} private void printTree(String rootFile, int stop, List<String> ignores) {
printTree(new File(rootFile), 0, stop, ignores, false, true);
} private void printTree(File rootFile, int level, int stop, List<String> ignores, boolean isLastChild, boolean isParentLast) {
String name = rootFile.getName();
if (level > stop || ignores.stream().anyMatch(name::contains)) {
return;
}
if (level == 0) {
System.out.println(".");
} else {
prettyPrint(level, rootFile, isLastChild, isParentLast);
} if (rootFile.isDirectory()) {
File[] files = rootFile.listFiles();
if (files != null) {
int length = files.length;
for (int i = 0; i < length; i++) {
if (i == length - 1) {
//
printTree(files[i], level + 1, stop, ignores, true, isLastChild);
} else {
printTree(files[i], level + 1, stop, ignores, false, isLastChild);
}
}
}
}
} private void prettyPrint(int level, File file, boolean isLastChild, boolean isParentLast) {
StringBuilder sb = new StringBuilder();
if (level != 1) {
sb.append("│");
} for (int i = 0; i < level - 2; i++) {
if (isParentLast && i == level - 3) {
sb.append(" ");
break;
}
sb.append(" |");
}
if (level != 1) {
sb.append(" ");
} if (isLastChild) {
sb.append("└──");
} else {
sb.append("├──");
} sb.append(file.getName());
System.out.println(sb.toString());
}
}

目前有个bug,就是递归到深入之后,孙子无法得知祖父是不是最终叶子,因此虚线没有去掉。不过,简单能用还是可以的。

console output:

.
├──_config.yml
├──db.json
├──package-lock.json
├──package.json
├──public
│ ├──2017
│ | ├──05
│ | ├──06
│ | ├──07
│ | ├──08
│ | └──09
│ ├──404.html
│ ├──about
│ | └──index.html
│ ├──archives
│ | ├──2017
│ | ├──index.html
│ | └──page
│ ├──baidusitemap.xml
│ ├──categories
│ | ├──Cache
│ | ├──Git
│ | ├──Hexo
│ | ├──index.html
│ | ├──Java
│ | ├──Java8
│ | ├──Javascript
│ | ├──Linux
│ | ├──MySQL
│ | ├──ReactJS
│ | ├──redis
│ | ├──Server
│ | ├──Spring
│ | ├──Tools
│ | ├──思考
│ | └──读书
│ ├──CNAME
│ ├──css
│ | └──main.css
│ ├──gallery
│ | └──index.html
│ ├──images
│ | ├──algolia_logo.svg
│ | ├──alipay.jpg
│ | ├──avatar.gif
│ | ├──avatar.jpeg
│ | ├──bk.bmp
│ | ├──bk.jpg
│ | ├──bk.png
│ | ├──bk2.jpg
│ | ├──cc-by-nc-nd.svg
│ | ├──cc-by-nc-sa.svg
│ | ├──cc-by-nc.svg
│ | ├──cc-by-nd.svg
│ | ├──cc-by-sa.svg
│ | ├──cc-by.svg
│ | ├──cc-zero.svg
│ | ├──loading.gif
│ | ├──placeholder.gif
│ | ├──quote-l.svg
│ | ├──quote-r.svg
│ | ├──searchicon.png
│ | └──wechat.jpg
│ ├──index.html
│ ├──js
│ | └──src
│ ├──lib
│ | ├──algolia-instant-search
│ | ├──canvas-nest
│ | ├──canvas-ribbon
│ | ├──fancybox
│ | ├──fastclick
│ | ├──font-awesome
│ | ├──Han
│ | ├──jquery
│ | ├──jquery_lazyload
│ | ├──pace
│ | ├──three
│ | ├──ua-parser-js
│ | └──velocity
│ ├──links
│ | └──index.html
│ ├──page
│ | ├──2
│ | └──3
│ ├──search.xml
│ ├──sitemap.xml
│ └──tags
│ ├──ArrayList
│ ├──banner
│ ├──Dropwizard
│ ├──EhCache
│ ├──Feign
│ ├──Git
│ ├──Hexo
│ ├──index.html
│ ├──Java
│ ├──Java8
│ ├──Javascript
│ ├──Lambda
│ ├──Linux
│ ├──Mac
│ ├──MySQL
│ ├──NodeJS
│ ├──ReactJS
│ ├──reading
│ ├──redis
│ ├──Server
│ ├──Spring
│ ├──SpringMVC
│ ├──team
│ ├──UTF-8
│ ├──vim
│ ├──Webpack
│ ├──Windows
│ └──码云
├──README.md
├──scaffolds
│ ├──draft.md
│ ├──page.md
│ └──post.md
├──source
│ ├──404.html
│ ├──_data
│ | └──links.yml
│ ├──_posts
│ | ├──banner-ascii-2-txt.md
│ | ├──dropwizard-feign.md
│ | ├──Ehcache3入门-Spring集成.md
│ | ├──git-rebase.md
│ | ├──hello-react-js.md
│ | ├──hello-world.md
│ | ├──hexo-github-oschina.md
│ | ├──hexo-next-hypercomments.md
│ | ├──hexo-next-shang.md
│ | ├──http-server-static.md
│ | ├──Java-ArrayList-remove.md
│ | ├──java-utf8-iso-乱码根源.md
│ | ├──java8-in-action-2.md
│ | ├──java8-lambda.md
│ | ├──js-cros.md
│ | ├──mac-install-mysql.md
│ | ├──mac-install-redis.md
│ | ├──react-tutorial-1.md
│ | ├──reading-schedule.md
│ | ├──spring400.md
│ | ├──switch-to-oschina.md
│ | ├──team-first-chance.md
│ | ├──tree.md
│ | ├──vim.md
│ | └──why-string-is-immutable.md
│ ├──about
│ | └──index.md
│ ├──categories
│ | └──index.md
│ ├──CNAME
│ ├──gallery
│ | └──index.md
│ ├──images
│ | ├──alipay.jpg
│ | ├──avatar.jpeg
│ | ├──bk.bmp
│ | ├──bk.jpg
│ | ├──bk.png
│ | ├──bk2.jpg
│ | └──wechat.jpg
│ ├──links
│ | └──index.md
│ └──tags
│ └──index.md
├──themes
│ ├──landscape
│ | ├──_config.yml
│ | ├──Gruntfile.js
│ | ├──languages
│ | ├──layout
│ | ├──LICENSE
│ | ├──package.json
│ | ├──README.md
│ | ├──scripts
│ | └──source
│ └──next
│ ├──.bowerrc
│ ├──.editorconfig
│ ├──.hound.yml
│ ├──.javascript_ignore
│ ├──.jshintrc
│ ├──.stylintrc
│ ├──.travis.yml
│ ├──_config.yml
│ ├──bower.json
│ ├──gulpfile.coffee
│ ├──languages
│ ├──layout
│ ├──LICENSE
│ ├──package.json
│ ├──README.cn.md
│ ├──README.md
│ ├──scripts
│ ├──source
│ └──test
└──thems-bak
│ └──next
│ ├──_config.yml
│ └──custom.styl

参考

mac 下的 tree 命令 终端展示你的目录树结构

命令行打印文件树列表: tree的更多相关文章

  1. Ubuntu使用命令行打印文件

    Ubuntu使用命令行打印文件 正文 环境: Ubuntu 16.04.3 LTS HP Deskjet InkAdvantage 4648 准备步骤 安装Common UNIX Printing S ...

  2. 在Linux下使用命令行打印文件

    近期需要将数学笔记打印出来复习,才发现Linux KDE环境下的默认PDF软件Okular根本无法将我在GoodNotes B5大小的页面写下的内容自适应地放大到A4纸上,只能以页面的原始尺寸打印.然 ...

  3. 分布式进阶(十) linux命令行下载文件以及常用工具:wget、Prozilla、MyGet、Linuxdown、Curl、Axel

    linux命令行下载文件以及常用工具:wget.Prozilla.MyGet.Linuxdown.Curl.Axel 本文介绍常用的几种命令行式的下载工具:wget.Prozilla.MyGet.Li ...

  4. Linux基础命令---lp打印文件

    lp lp指令用来打印文件,也可以修改存在的打印任务.使用该指令可以指定打印的页码.副本等. 此命令的适用范围:RedHat.RHEL.Ubuntu.CentOS.Fedora.openSUSE.SU ...

  5. Linux基础命令---lpr打印文件

    lpr lpr指令用来打印文件,如果没有指定文件名,那么从标准输入读取内容.CUPS提供了许多设置默认目标的方法.首先查询“LPDEST”和“PRINTER”环境变量.如果没有设置,则使用lpopti ...

  6. FileZilla命令行实现文件上传以及CreateProcess实现静默调用

    应用需求:         用户在选择渲染作业时面临两种情况:一是选择用户远程存储上的文件:二是选择本地文件系统中的文件进行渲染.由于渲染任务是在远程主机上进行的,实际进行渲染时源文件也是在ftp目录 ...

  7. Linux进程-命令行参数和环境列表

    命令行参数 在C中,main函数有很多的变种,比如 main(), int main(), int main(int argc, char *argv[]), int main(int argc, c ...

  8. Windows中通过命令行新建文件夹、新建文件,和一些常用命令

    新建文件 和Linux不太一样,Linux中的touch和vi命令创建新文件的方法都不能用了,在windows命令行下得用type nul>文件名.后缀名来创建: F:\study\vue\wo ...

  9. 使用SSH命令行传输文件到远程服务器

    以前一直在windows下用SSH Secure Shell连接远程服务器,它自带了一个可视化的文件传输工具,跟ftp差不多 但是它也存在一个缺陷,不支持编码的选择,遇到utf8就自动乱码了,另外ma ...

随机推荐

  1. c# RSA 加密解密 java.net公钥私钥转换 要解密的模块大于128字节

    有一个和接口对接的任务,对方使用的是java,我方使用的是c#,接口加密类型为RSA,公钥加密私钥解密. 然后就是解决各种问题. 1.转换对方的密钥字符串 由于c#里面需要使用的是xml各式的密钥字符 ...

  2. java之ibatis数据缓存

    使用IBatis作数据缓存 1.SqlMapConfig.xml中<settingscacheModelsEnabled="true" //设置为trueenhancemen ...

  3. [Go] Http / Net 相关资料

    [astaxie] [基础]GO搭建一个简单的Web服务器 [astaxie] Go如何使得Web工作 [astaxie] Go 的 Http 包详解 [叶剑峰] Go语言_HTTP包 [叶剑峰] 使 ...

  4. socket recv阻塞与非阻塞error总结

    recv是socket编程中最常用的函数之一,在阻塞状态的recv有时候会返回不同的值,而对于错误值也有相应的错误码,分别对应不同的状态,下面是我针对常见的几种网络状态的简单总结. 首先阻塞接收的re ...

  5. .NET基于Eleasticsearch搭建日志系统实战演练

    一.需求背景介绍 1.1.需求描述 大家都知道C/S架构模式的客户端应用程序(比如:WinForm桌面应用.WPF.移动App应用程序.控制台应用程序.Windows服务等等)的日志记录都存储在本地客 ...

  6. 查看内核页表kernel_page_tables (aarch32)

    作者 彭东林 pengdonglin137@163.com   平台 Linux-4.10.17 Qemu + vexpress-ca9     概述 通过配置内核,会在/sys/kernel/deb ...

  7. ASP.NET Web API接受AngualrJS的QueryString的两种方式

    ASP.NET Web API如何接受来自AngualrJS的QueryString呢?本篇体验两种方式. 第一种方式:http://localhost:49705/api/products?sear ...

  8. ASP.NET Identity系列01,揭开神秘面纱

    早在2005年的时候,微软随着ASP.NET 推出了membership机制,十年磨一剑,如今的ASP.NET Identity是否足够强大,一起来体会. 在VS2013下新建项目,选择"A ...

  9. Time Zones And Daylight Savings Time

    This page describes code for working with Time Zones and Daylight Savings Time. Neither VBA nor VB6 ...

  10. Caused by: redis.clients.jedis.exceptions.JedisConnectionException: java.net.SocketTimeoutException: connect timed out

    问题: java连接不上redis. 异常信息: Caused by: redis.clients.jedis.exceptions.JedisConnectionException: java.ne ...