Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Ein kleines aber hilfreiches Programm ist zum Beispiel tree das Verzeichnisse rekursive in Text form auflisten kann:

Code Block
languagetext
collapsetrue
$ tree
.
├── README.md
├── app
│   ├── application.js
│   ├── assets
│   │   └── index.html
│   ├── styles
│   │   └── main.styl
│   └── test.js
├── bower.json
├── brunch-config.coffee
├── package.json
└── public
    ├── README.md
    ├── app.css
    ├── app.css.map
    ├── app.js
    ├── app.js.map
    └── index.html

4 directories, 14 files

...