• linux tree 命令


    使用cmder确实是方便了很多,想看命令帮助信息:

    $ help tree
    以图形显示驱动器或路径的文件夹结构。
    
    TREE [drive:][path] [/F] [/A]
    
       /F   显示每个文件夹中文件的名称。
       /A   使用 ASCII 字符,而不使用扩展字符。
    

    看看区别

    扩展字符显示

    $ tree work /f                                      
    卷 软件 的文件夹 PATH 列表                                   
    卷序列号为 000E-E536                                     
    D:APACHE TOMCAT9_X64WORK                          
    └─Catalina                                          
        ├─boystyle.cn                                   
        │  ├─docs                                       
        │  ├─examples                                   
        │  ├─host-manager                               
        │  ├─manager                                    
        │  └─ROOT                                       
        ├─localhost                                     
        │  ├─docs                                       
        │  ├─examples                                   
        │  ├─host-manager                               
        │  ├─manager                                    
        │  └─ROOT                                       
        │      └─org                                    
        │          └─apache                             
        │              └─jsp                            
        │                      index_jsp.class          
        │                      index_jsp.java           
        │                                               
        └─qiuboai.com                                   
            ├─docs                                      
            ├─examples                                  
            ├─host-manager                              
            ├─manager                                   
            ├─qiuboai                                   
            └─ROOT                                      
    

    ASCII字符显示,适合文本文件

    $ tree work /f /a                                      
    卷 软件 的文件夹 PATH 列表                                      
    卷序列号为 000E-E536                                        
    D:APACHE TOMCAT9_X64WORK                             
    ---Catalina                                           
        +---boystyle.cn                                    
        |   +---docs                                       
        |   +---examples                                   
        |   +---host-manager                               
        |   +---manager                                    
        |   ---ROOT                                       
        +---localhost                                      
        |   +---docs                                       
        |   +---examples                                   
        |   +---host-manager                               
        |   +---manager                                    
        |   ---ROOT                                       
        |       ---org                                    
        |           ---apache                             
        |               ---jsp                            
        |                       index_jsp.class            
        |                       index_jsp.java             
        |                                                  
        ---qiuboai.com                                    
            +---docs                                       
            +---examples                                   
            +---host-manager                               
            +---manager                                    
            +---qiuboai                                    
            ---ROOT                                       
    
  • 相关阅读:
    长春区域赛总结
    HDU 4297 One and One Story (LCA>RMQ)
    SRM 578 div1
    开学,网赛,压力。。。
    HDU 4291 A Short problem
    最大密集子图(POJ 3155)
    ubuntu安装sunjdk1.6
    【转】容斥原理
    生成树计数问题(SPOJ 104 Highways)
    Tonelli–Shanks Algorithm 二次剩余系解法 (Ural 1132. Square Root)
  • 原文地址:https://www.cnblogs.com/wancy86/p/6157946.html
Copyright © 2020-2023  润新知