mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 06:15:33 -04:00
This brings in Unicode support, CSV support and a number of bug fixes.
They are described in _The AWK Programming Language_, Second Edition, by
Al Aho, Brian Kernighan, and Peter Weinberger (Addison-Wesley, 2024,
ISBN-13 978-0138269722, ISBN-10 0138269726).
Sponsored by: Netflix
(cherry picked from commit f32a6403d3)
6 lines
85 B
Awk
6 lines
85 B
Awk
BEGIN {
|
|
# str = "\342\200\257"
|
|
str = "あ"
|
|
n = gsub(//, "X", str)
|
|
print n, str
|
|
}
|