Stop awk’ing at me
Posted by Jordan on May 14th, 2003This is normal. Really. Lately I’ve taking to using awk for all my shell programming tasks. Awk is wonderful. Want to only output lines of text where 25 is in the 6th column of text? Sure thing:
awk ‘ ~ /25/’
How about something complicated? You want to take a unix [...]