Answers for "sum column bash"

0

sum column bash

<cmd> | paste -sd+ | bc
# Using stdin
Posted by: Guest on October-29-2020
0

sum column bash

paste -sd+ infile | bc
# Using existing file
Posted by: Guest on October-29-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language