jake RSS


jakehofman.com

Archive

Mar
30th
Mon
permalink

tip: awk

to print all lines where, e.g., the second field matches a regex use awk ‘$2 ~ /regex/’ http://bit.ly/BVnN

tips  awk 
Apr
6th
Thu
permalink

tip: awk

to print even lines, NR %2. odd lines, ‘NR % 2 == 1’.

tips  awk 
Feb
15th
Wed
permalink

tip: awk

replace fields with nothing … {$1=”“; print $0;}

tips  awk 
Nov
14th
Mon
permalink

tip: awk

to ignore case, use IGNORECASE=1

tips  awk