# Falls Sie eine Website erwarten, aber diesen # Abschnitt lesen können, löschen Sie bitte das # _index.htmx_getline # vom Ende der Adresszeile. Danke! Lang: de Title: lines/getline: Ersatz für head/tail Short Title: lines/getline Publication date: 2015-05 Meta: en Title: lines/getline: Replacement for head/tail +INFO +usage >>INFO de 1.0
Ab und an programmmiere ich ein Shell-Skript und versuche, dieses Skript POSIX-kompatibel zu halten.
Manchmal stoße ich auf die Situation, dass aus einer Datei oder einer Pipe (nur) bestimmte Zeilen gelesen werden sollen. Um nicht in einer großen Konstruktion aus head- und tail-Aufrufen zu enden und mehrere Blöcke gleichzeitig ausgeben zu können, habe ich einen weitgehenden Ersatz für head und tail programmiert.
Die erste Version war ein Shell-Skript, allerdings ist sie recht langsam, deswegen gibt es ein Awk-Programm, das funktional identisch, aber schneller ist.
Das Programm ist nicht schwer zu bedienen: Die Verwendung ist im Folgenden aufgeführt.
Hinweis: die Nutzung ist nur privat gestattet, es gelten die im Impressum aufgeführten Nutzungsbedingungen.
<< INFO de >>INFO en 0.8When I create a Shell script and try to do this in a POSIX compatible way, sometimes I would need to read (only) certain lines of a file or a pipe.
In order not to end up in a construction of head an tail invokations and in order to output several blocks of data at one time I programmed a replacement for head and tail.
The first version was a slow shell skript, the second version is a faster awk program which has same functionality.
Programs' usage is explained inthe following examples:
Remark: Only use the program in a private scope; for further information please look at the imprint of this website. << INFO en >> usage de 1.0 Verwendung (Linux, BSD, Windows (cygwin), OS X (?)):
# printf " %s\n" a b c d e f g | getline 2-3,3#-6 b c e f # printf " %s\n" a b c d e f g | getline 3#-6,2-3 b c e f # printf " %s\n" a b c d e | lines 2-3,3#-4 b c c d # printf " %s\n" a b c d e | lines --unique 2-3,3#-4 b c d # printf " %s\n" a b c d e | lines --unique 2-3,3#- b c d e #