Search Results

0
votes

unix regex for adding contents in a file

Here's one in Perl. $ cat foo.txt asdfb ... 1 adfsdf ... 2 sdfdf .. 3 $ perl -a -n -E '$total += $F[2]; END { say $total }' foo 6 …