URI: 
       tadd correction script - ebeltoft-ams - AMS results for channel deposit at Ebeltoft, Denmark
  HTML git clone git://src.adamsgaard.dk/ebeltoft-ams
   DIR Log
   DIR Files
   DIR Refs
       ---
   DIR commit 9a4891569596ff5f9fa2a266b9d3624bb7795dd9
   DIR parent 99f01d689a37ef99f69d2843590b287ebe916ce9
  HTML Author: Anders Damsgaard <anders@adamsgaard.dk>
       Date:   Fri, 24 Jun 2022 14:43:25 +0200
       
       add correction script
       
       Diffstat:
         A ams-correct.awk                     |       7 +++++++
       
       1 file changed, 7 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/ams-correct.awk b/ams-correct.awk
       t@@ -0,0 +1,7 @@
       +#!/usr/bin/awk -f
       +
       +NR == 1
       +
       +NF == 6 {
       +        printf '%d\t%\d\t%d\n', $1, $2 + $5, $3 - $6
       +}