# # tt.awk captures finds === and uses getline # to reformat data and wraps # # # /* === 2025-12-27 22:00 t=18812 === 2025-12-27 22:15 t=18750 === 2025-12-27 22:30 t=18750 */ BEGIN{ } # look for lines with === /===/{ getline date ; getline t ; # spline line on = and gets date split( t,tA,/=/) print( "gbFa( \"" date " " tA[2]/1000.0 " \" )" ); }