Home
Commands
Sum a column with awk
Sum a column with awk
Terminal
awk '{ sum += $2 } END { print sum }' <file>
Copy command