命令行tree命令创建文件目录树

2018-06-05  本文已影响5人  _____西班木有蛀牙

语法

tree [-aACdDfFgilnNpqstux][-I <范本样式>][-P <范本样式>][目录...]
参数说明:
tree > list.txt  // 输出到指定文件里面
│  .babelrc
│  .editorconfig
│  .eslintignore
│  .eslintrc.js
│  .gitignore
│  .postcssrc.js
│  .project
│  demo.txt
│  index.html
│  package.json
│  README.md
│  vue-elementUI-empty.zip
│  yarn-error.log
│  
├─build
│      build.js
│      check-versions.js
│      logo.png
│      utils.js
│      vue-loader.conf.js
│      webpack.base.conf.js
│      webpack.dev.conf.js
│      webpack.prod.conf.js
│      webpack.test.conf.js
│      
├─config
│      dev.env.js
│      index.js
│      prod.env.js
│      test.env.js
│      
├─doc
│      接口说明.txt
│      
├─src
│  │  App.vue
│  │  main.js
│  │  
│  ├─assets
│  │  │  logo.png
│  │  │  
│  │  ├─fonts
│  │  │  └─iconfont
│  │  │          demo.css
│  │  │          demo_fontclass.html
│  │  │          demo_symbol.html
│  │  │          demo_unicode.html
│  │  │          iconfont.css
│  │  │          iconfont.eot
│  │  │          iconfont.js
│  │  │          iconfont.svg
│  │  │          iconfont.ttf
│  │  │          iconfont.woff
│  │  │          
│  │  ├─images
│  │  │      logo.png
│  │  │      
│  │  ├─scripts
│  │  └─stylesheets
│  │          common.css
│  │          
│  ├─components
│  │      app-container.vue
│  │      aside-component.vue
│  │      footer-component.vue
│  │      header-component.vue
│  │      main-component.vue
│  │      
│  ├─pages
│  │  ├─dashboard
│  │  │      dashboard.vue
│  │  │      
│  │  ├─journaling
│  │  │      order.vue
│  │  │      
│  │  ├─login
│  │  │      login.vue
│  │  │      
│  │  ├─map
│  │  │      map.vue
│  │  │      
│  │  └─settings
│  │          base.vue
│  │          pay.vue
│  │          table.vue
│  │          
│  ├─plugins
│  │      axios.config.js
│  │      element.ui.config.js
│  │      
│  ├─router
│  │      index.js
│  │      
│  ├─store
│  │  │  actions.js
│  │  │  getters.js
│  │  │  index.js
│  │  │  mutation-types.js
│  │  │  mutations.js
│  │  │  
│  │  └─modules
│  │          notify.js
│  │          progress.js
│  │          router.js
│  │          
│  └─utils
│          cookie.js
│          
├─static
│      .gitkeep
│      
└─test
    ├─e2e
    │  │  nightwatch.conf.js
    │  │  runner.js
    │  │  
    │  ├─custom-assertions
    │  │      elementCount.js
    │  │      
    │  └─specs
    │          test.js
    │          
    └─unit
        │  .eslintrc
        │  index.js
        │  karma.conf.js
        │  
        └─specs
                HelloWorld.spec.js
上一篇 下一篇

猜你喜欢

热点阅读