Mention awk fails on macOS and provide a solution

pull/96/head
David Beitey 2018-07-10 06:30:09 +00:00 committed by Adrian Perez
parent aa0be2dcaa
commit e6ddb517ca
1 changed files with 6 additions and 1 deletions

View File

@ -21,4 +21,9 @@ is known to work flawlessly. Just do:
$ awk -f template.awk template.html > template.h
If your copy of `awk` is not the GNU implementation, you will need to
install it and use `gawk` instead in the command line above.
install it and use `gawk` instead in the command line above.
This includes macOS where the current built-in `awk` (currently version
20070501 at time of testing on 10.13.6) doesn't apply correctly and causes
characters to be omitted from the output. `gawk` can be installed with a
package manager such as [Homebrew](https://brew.sh).