Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 162 Bytes

024-engine-awk.md

File metadata and controls

16 lines (12 loc) · 162 Bytes

Does Awk work in knitr?

We need to pass a file option to Awk.

# how many non-empty lines?
NF {
  i = i + 1
}
END { print i }
## 590