Difference between revisions of "Awk"

From Freephile Wiki
Jump to navigation Jump to search
(add example to get first column from mw data table)
Line 2: Line 2:
 
get first column from mw table data
 
get first column from mw table data
 
  awk '/\|-/{getline;print}' /tmp/terror.txt | sed s/\|// | sed s/'^ *'// | sort -u  
 
  awk '/\|-/{getline;print}' /tmp/terror.txt | sed s/\|// | sed s/'^ *'// | sort -u  
 +
 +
== Docs ==
 +
The man page for Awk is 27 pages long.  Hard to read in a terminal.  Here is [[File:Awk.pdf|a PDF copy of the Awk manual]] a PDF copy of the Awk manual
  
 
== One-liners ==
 
== One-liners ==

Revision as of 14:28, 30 January 2017