mirror of
https://github.com/cheat/cheat.git
synced 2024-11-13 23:51:09 +01:00
2 lines
115 B
Text
2 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}'
|