diff options
| author | wukong <wukong@longaeva> | 2026-05-05 11:15:46 -0700 |
|---|---|---|
| committer | wukong <wukong@longaeva> | 2026-05-05 11:15:46 -0700 |
| commit | 6ff1fc477e92897177cb4cebdaa21fa41a41c0a4 (patch) | |
| tree | fbc67ce5e5071960758f1b508d22c851a1a40ab3 /diff.awk | |
| parent | b60f09401a15721f626bcb7c852f68b82fe39c1c (diff) | |
removed extra versions of diff and lin_reg;
Diffstat (limited to '')
| -rw-r--r-- | diff.awk | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -30,7 +30,7 @@ NR == 1 { printf(OFS) } - # diff columns + # new diff columns for (n=1; n<=NF; n++) { printf(dheader[n]) printf(n < NF ? OFS : ORS) @@ -41,7 +41,7 @@ NR == 1 { NF > 0 { (NF > nf_max) ? nf_max = NF : nf_max = nf_max - # data columns + # orig data columns for (n=1; n<=nf_max; n++) { if ($n == header[n] || $n == dheader[n]) continue @@ -52,7 +52,7 @@ NF > 0 { printf(OFS) } - # diff columns + # new diff columns for (n=1; n<=nf_max; n++) { if ($n == header[n] || $n == dheader[n]) continue |
