mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-03 14:31:06 +01:00
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}'
|