paste is a shell command that joins files horizontally (parallel merging) by writing to standard output lines consisting of the sequentially corresponding lines of each input file, separated by tabs.
[…]
Sum the numbers from 1 to 100:$ seq 1 100 | paste -d + -s | bc
#somme #nombres #shell #bash