1
0
mirror of https://github.com/cheat/cheat.git synced 2024-12-23 21:19:44 +01:00
cheat/cheatsheets/awk
2013-08-27 14:06:15 +03:00

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}'