Here's an awk one liner for adjusting regtime bodyfile time stamps, in this case we're adding 600 seconds:
awk -F'|' 'BEGIN {OFS="|"} {$9=$9+600;print}'
One thing to consider when adjusting time stamps to compensate for clock drift, clocks don't drift all at once, but over days, weeks and months. Adjusting time skews affects everything all at once.
No comments:
Post a Comment