Das Terminal ist ein wichtiges Werkzeug für Programmierer und ermöglicht das schnelle erledigen von vielen Aufgaben.
Obwohl die Kommandozeile noch aus der Zeit vor grafischen Benutzeroberflächen stammt heisst das nicht, dass es veraltet ist und nicht mehr gebraucht werden kann.
Ein kleines aber hilfreiches Programm ist zum Beispiel tree
das Verzeichnisse rekursive in Text form auflisten kann:
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
.
├── 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 |
Verzeichnis Navigation
Die wichtigsten Befehle im Terminal werden benutzt um Verzeichnisse zu navigieren.
Mit dem Befehl pwd
kann das aktuelle Verzeichnis angezeigt werden. Eine Terminal Session started immer Heimverzeichnis des aktuellen Benutzer.
...
The Terminal is one of the post important tools of a programer and allows a quick completion of various tasks.
Even tough the command line is from a time before Graphical User Interfaces, it has still kept its value.
Today many developments tools are only available as command line applications.
In that sense it its crucial for developers too learn how to use it.