mirror of
https://gitlab.com/manzerbredes/loosely-coupled-dss-extended.git
synced 2025-04-05 19:16:26 +02:00
15 lines
200 B
Awk
Executable file
15 lines
200 B
Awk
Executable file
#!/usr/bin/awk -f
|
|
|
|
BEGIN {
|
|
RS="\n"
|
|
FS=" "
|
|
CSV_HEADER="node,ts"
|
|
CSV_DATA=""
|
|
skip=1
|
|
print(CSV_HEADER)
|
|
}
|
|
|
|
/forward a hint successfully/ {
|
|
gsub("]","",$0)
|
|
print($4","$2)
|
|
}
|