Skip to content

Commit 39ba5b9

Browse files
authored
chore: added syntax highlighting to awk part (#79)
1 parent 401fc14 commit 39ba5b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

info/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Awk processes data line by line, splitting by a "record separator" which is
4949
(essentially) a regular expression. That means it's easy enough to write the
5050
script
5151

52-
```
52+
```awk
5353
awk -F',' 'NR>1 { SUM+=$2 } END { print SUM }'
5454
```
5555

0 commit comments

Comments
 (0)