I'd like to convert string below into timestamp, I already did this into Sheets but I would like to automate this process.
FROM: 38740
TO: 00:38.74
In google sheets, I insert the formula and works perfectly
=TEXT(A2/86400000,"mm:ss.00")
In shell (bash):
awk "BEGIN {print 38740/86400000}"
There's one way to do that using shell or I need to use some programming language more advanced?