Created
November 30, 2014 18:52
-
-
Save andrioli/ab67e32629de36620a68 to your computer and use it in GitHub Desktop.
Awk script to sum columns
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
for (i=1; i<=NF; i++) { | |
sum[i]+= $i | |
} | |
} | |
END { | |
for (i=1; i<NF; i++ ) { | |
printf "%s ", sum[i] | |
} | |
print sum[NF] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment