Summing values from shell
Suppose you have two or more text files with one value per line
File1:
0 1 4 20 2
If you want to sum them:
paste first.txt second.txt | awk '{ print $1+$2; }'
a web notebook to store some memos…
Suppose you have two or more text files with one value per line
File1:
0 1 4 20 2
If you want to sum them:
paste first.txt second.txt | awk '{ print $1+$2; }'