ebeltoft-ams

AMS results for channel deposit at Ebeltoft, Denmark
git clone git://src.adamsgaard.dk/ebeltoft-ams # fast
git clone https://src.adamsgaard.dk/ebeltoft-ams.git # slow
Log | Files | Refs Back to index

commit 9a4891569596ff5f9fa2a266b9d3624bb7795dd9
parent 99f01d689a37ef99f69d2843590b287ebe916ce9
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Fri, 24 Jun 2022 14:43:25 +0200

add correction script

Diffstat:
Aams-correct.awk | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/ams-correct.awk b/ams-correct.awk @@ -0,0 +1,7 @@ +#!/usr/bin/awk -f + +NR == 1 + +NF == 6 { + printf '%d\t%\d\t%d\n', $1, $2 + $5, $3 - $6 +}