Awk: Difference between revisions
Jump to navigation
Jump to search
Created page with " == References == <ol> <li>[http://man.he.net/?topic=awk§ion=all awk man page]</li> </ol>" |
No edit summary |
||
Line 1: | Line 1: | ||
awk parses reports, among other text manipulation | |||
Usage: | |||
<code>awk <i>pattern</i> {<i>action</i>}</code> | |||
== References == | == References == | ||
Line 5: | Line 9: | ||
<ol> | <ol> | ||
<li>[http://man.he.net/?topic=awk§ion=all awk man page]</li> | <li>[http://man.he.net/?topic=awk§ion=all awk man page]</li> | ||
<li>[http://www.grymoire.com/Unix/Awk.html awk tutorial]</li> | |||
</ol> | </ol> |
Revision as of 22:20, 29 December 2016
awk parses reports, among other text manipulation
Usage:
awk pattern {action}