diff options
-rw-r--r-- | awk.md | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -7,6 +7,8 @@ Program is ;-separated pattern-action statements. /pattern/ { action } + # e.g. (apostrophes to not interpolate shell vars + awk '/tt/ { print $1 }' awk.md `$0` is whole line, `$1`, `$2`, ... are fields separated by `FS` (by default, whitespace). |