Unix Shell: Unterschied zwischen den Versionen

Aus Wiki - FSI Mathe/Info
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
 
(6 dazwischenliegende Versionen von 3 Benutzern werden nicht angezeigt)
Zeile 1: Zeile 1:
==Directory Commands==
Linux ist toll, weil Linux Freie Software ist. Es ist für das Informatikstudium (und für das Leben darüber hinaus) enorm hilfreich, wenn man ein Linuxbetriebssystem bedienen kann. Ein der wesentlichen Tools eines jeden Linux-Betriebssystems ist die Linux-Shell. Unten findet ihr eine Sammlung von Ressourcen, die euch einen Einstieg in die Benutzung der Shell erleichtern.
* cd directory
* pwd
* ls
* rm file
* mv old new
* cp old new
* mkdir directoryName
* rmdir directoryName


==Shorthand Notations & Wildcards==
== Externe Links ==
* .
* ..
* ~
* *
* ?
 
== file content viewing ==
* cat file
* more file
* less file
 
== usefull stuff ==
 
* w
* ps
* jobs
* program&
* ctrl-z
* %
* %number
* kill
* grep expression input
* script
* lpr [-printerName] file
* diff file1 file2
* source file
* man
 
==Pipes==
                   
* a > b: Redirect a's standard output to overwrite file b
* a >> b: Redirect a's standard output to append to the file b
* a >& b: Redirect a's error output to overwrite file b
* a < b: Redirect a's standard input to read from the file b
* a | b: Redirect a's standard output to b's standard input
 
== externe Links ==
* [http://freeengineer.org/learnUNIXin10minutes.html Learn UNIX in 10 minutes]
* [http://freeengineer.org/learnUNIXin10minutes.html Learn UNIX in 10 minutes]
* [http://pad.spline.de/shellinschnell splinePad zum geplanten Shellkurs]
* [https://linuxkurs.spline.de/ Spline-Linux-Kurs]
* [https://swcarpentry.github.io/shell-novice/ Software Carpentry Shellkurs]

Aktuelle Version vom 27. Juni 2017, 20:05 Uhr

Linux ist toll, weil Linux Freie Software ist. Es ist für das Informatikstudium (und für das Leben darüber hinaus) enorm hilfreich, wenn man ein Linuxbetriebssystem bedienen kann. Ein der wesentlichen Tools eines jeden Linux-Betriebssystems ist die Linux-Shell. Unten findet ihr eine Sammlung von Ressourcen, die euch einen Einstieg in die Benutzung der Shell erleichtern.

Externe Links[Bearbeiten]