Zentrale öffentliche Logbücher
Aus Matts Wiki
Dies ist die kombinierte Anzeige aller in Matts Wiki geführten Logbücher. Die Ausgabe kann durch die Auswahl des Logbuchtyps, des Benutzers oder des Seitentitels eingeschränkt werden (Groß-/Kleinschreibung muss beachtet werden).
- 23:06, 26. Sep. 2025 Matt Diskussion Beiträge erstellte die Seite Awk Knowledge Base (Die Seite wurde neu angelegt: „This is my ongoing knowledge base for the <code>awk</code> command in Linux. == General Knowledge == Return n-th column, i.e. first one: awk '{print $n}' -f file.csv cat file.csv | awk '{print $n}' Return last column or n-th to last column: awk contains the constant <code>NF</code> which holds the number of columns, which allows printing the last or the second to last column: cat file.csv | awk '{print $NF}' # Last column cat file.csv | aw…“) Markierung: Visuelle Bearbeitung
