mirror of
https://github.com/cheat/cheat.git
synced 2024-11-16 17:08:29 +01:00
3 lines
115 B
Text
3 lines
115 B
Text
|
# sum integers from a file or stdin, one integer per line:
|
||
|
printf '1\n2\n3\n' | awk '{ sum += $1} END {print sum}'
|