mirror of https://github.com/cheat/cheat.git
3 lines
115 B
Plaintext
3 lines
115 B
Plaintext
|
# sum integers from a file or stdin, one integer per line:
|
||
|
printf '1\n2\n3\n' | awk '{ sum += $1} END {print sum}'
|