| tmax: remove extra tab char between fields - numtools - perform numerical opera… | |
| git clone git://src.adamsgaard.dk/numtools | |
| Log | |
| Files | |
| Refs | |
| README | |
| LICENSE | |
| --- | |
| commit 5c701199a7704a47cd5248efea4a494dc72af5a1 | |
| parent 66df2bbd7cf78e43d114abcccfc3aa00f212f6d5 | |
| Author: Anders Damsgaard <[email protected]> | |
| Date: Wed, 9 Dec 2020 10:54:03 +0100 | |
| max: remove extra tab char between fields | |
| Diffstat: | |
| M max | 2 +- | |
| 1 file changed, 1 insertion(+), 1 deletion(-) | |
| --- | |
| diff --git a/max b/max | |
| t@@ -6,7 +6,7 @@ | |
| } | |
| END { | |
| for (i = 0; i < NF; i++) { | |
| - printf("%g\t", max[i]) | |
| + printf("%g", max[i]) | |
| if (i + 1 < NF) | |
| printf("\t", max[i]) | |
| } |