From 4548acfec40dec3ce783e9a34fae407a6d21f575 Mon Sep 17 00:00:00 2001 From: "Kwardakov, Michael" Date: Wed, 18 Jan 2017 14:03:59 +0300 Subject: [PATCH 1/2] Fix #67: remove awk example duplicate --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index df6ca81..285c90a 100644 --- a/README.md +++ b/README.md @@ -238,7 +238,7 @@ Notes: - You can set a specific command's environment by prefixing its invocation with the environment variable settings, as in `TZ=Pacific/Fiji date`. -- Know basic `awk` and `sed` for simple data munging. For example, summing all numbers in the third column of a text file: `awk '{ x += $3 } END { print x }'`. This is probably 3X faster and 3X shorter than equivalent Python. +- Know basic `awk` and `sed` for simple data munging. See One-liners section for examples. - To replace all occurrences of a string in place, in one or more files: ```sh From d8bdf9155548a7c4a2a3059556dd14b57ca4dca9 Mon Sep 17 00:00:00 2001 From: Joshua Levy Date: Sat, 20 May 2017 10:36:17 -0700 Subject: [PATCH 2/2] Add section link. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 285c90a..610ccac 100644 --- a/README.md +++ b/README.md @@ -238,7 +238,7 @@ Notes: - You can set a specific command's environment by prefixing its invocation with the environment variable settings, as in `TZ=Pacific/Fiji date`. -- Know basic `awk` and `sed` for simple data munging. See One-liners section for examples. +- Know basic `awk` and `sed` for simple data munging. See [One-liners](#one-liners) for examples. - To replace all occurrences of a string in place, in one or more files: ```sh