mirror of
https://github.com/cheat/cheat.git
synced 2024-12-18 10:45:05 +01:00
cheat awk: sum integers from a file or stdin
This commit is contained in:
parent
6990807010
commit
bcdc3c7f23
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 New Issue
Block a user