mirror of
https://github.com/cheat/cheat.git
synced 2024-11-17 17:35:21 +01:00
Merge pull request #40 from carlosp420/master
cheat awk: sum integers from a file or stdin
This commit is contained in:
commit
29e9215f82
1 changed files with 2 additions and 0 deletions
2
cheatsheets/awk
Normal file
2
cheatsheets/awk
Normal 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}'
|
Loading…
Reference in a new issue