Sum numbers in a file
1
3
7
10
$ perl -n -E 'END { say $c } $c += $_' src/examples/numbers.txt
21
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
1
3
7
10
$ perl -n -E 'END { say $c } $c += $_' src/examples/numbers.txt
21