UnixTools01 09
Getting Help
Für alle hier vorgestellten Kommandos gibt es zahlreiche Tutorials im Internet oder Videoa, zum Beispiel auf YouTube, usw.
Die meisten Programme sind (vielen Dank an die Programmierer!) jedoch so programmiert worden, dass sie selbst eine kurze Übersicht darüber geben knnen, was sie tun, und vor allem, welche Optionen (Argumente) Sie angeben können. In de Regel (bei den meisten Programmen) genügt es, das Programm mit der Option --help aufzurufen, und schon erfahren Sie das Wichtigste.
gruenau4 jpr 9 ( ~ ) $ cd --help cd: cd [-L|[-P [-e]] [-@]] [Verzeichnis] Change the shell working directory.
Change the current directory to DIR. The default DIR is the value of the HOME shell variable.
The variable CDPATH defines the search path for the directory containing DIR. Alternative directory names in CDPATH are separated by a colon (:). A null directory name is the same as the current directory. If DIR begins with a slash (/), then CDPATH is not used.
If the directory is not found, and the shell option `cdable_vars' is set, the word is assumed to be a variable name. If that variable has a value, its value is used for DIR.
Options: -L force symbolic links to be followed: resolve symbolic links in DIR after processing instances of `..' -P use the physical directory structure without following symbolic links: resolve symbolic links in DIR before processing instances of `..' -e if the -P option is supplied, and the current working directory cannot be determined successfully, exit with a non-zero status -@ on systems that support it, present a file with extended attributes as a directory containing the file attributes
Diese Form der Hilfe ist eher als Erinnerung für Sie gedacht, falls Sie Optionen vergessen haben. Um ein Programm vllig neu kennenzulernen, ist es vermutlich zu wortkard und sie sollten sich nach geeigneten Tutorials umsehen.
Es gibt noch einen weiteren großen Vorteil, über die Option --help über die Fähigkeizten eines Programms zu erfahren: Von vielen Programmen gibt es (über die Zeit entstandene) verschiedene Versionen, die alle leicht anders funktionieren. Falls Sie also ein Tutorial im Internet finden, ist es durchaus mglich, dass sich dieses auf eine andere Version des Programms bezieht. Da beim Aufruf mit der Option --help das Programm selbst den Hilfe-Texz ausgibt, wird dieser auch zur tatsächlichen Version passen.