mirror of
https://gitlab.com/manzerbredes/loosely-coupled-dss-extended.git
synced 2025-04-06 11:36:26 +02:00
16 lines
200 B
Awk
16 lines
200 B
Awk
![]() |
#!/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)
|
||
|
}
|