mirror of
https://github.com/cesanta/mongoose
synced 2026-08-25 22:26:06 -04:00
11 lines
219 B
Awk
Executable file
11 lines
219 B
Awk
Executable file
#!/usr/bin/env -S gawk -f
|
|
# gawk used to avoid "towc" errors seen on MacOS. env used to circumvent brew installing it wherever they like
|
|
|
|
BEGIN {
|
|
FS="\t"
|
|
print "{"
|
|
}
|
|
/HEALTH_DASHBOARD/ { print $2 }
|
|
END {
|
|
print "}"
|
|
}
|