1

I do not understand the time encoding of the first line below. I got it in a sample record file and I just have the number but I don't know how it transforms into the corresponding time.

This is the data record:

Number:7499969
REC:1:Procedure Start Time: 7499969 (02:04:59.969 UTC)

As you can see, I only have a number.

Rui F Ribeiro
  • 56,709
  • 26
  • 150
  • 232
Óscar
  • 13

1 Answers1

3

That looks suspiciously like the number of milliseconds since midnight of that day.

$ echo $((7499969/1000))
7499

$ echo $((2*60*60 + 4*60 + 59))
7499
Jeff Schaller
  • 67,283
  • 35
  • 116
  • 255