cheat awk: sum integers from a file or stdin

This commit is contained in:
Carlos Peña 2013-08-27 14:06:15 +03:00
parent 6990807010
commit bcdc3c7f23
1 changed files with 2 additions and 0 deletions

2
cheatsheets/awk Normal file
View File

@ -0,0 +1,2 @@
# sum integers from a file or stdin, one integer per line:
printf '1\n2\n3\n' | awk '{ sum += $1} END {print sum}'