See also
Print selected parts of lines from each FILE to standard output. cut can also read data from stdin (usually via a pipe).
Use DELIM instead of TAB for field delimiter
Select only these fields; also print any line that contains no delimiter character, unless the -s option is specified
Write lines consisting of the sequentially corresponding lines from each FILE, separated by TABs, to standard output. With no FILE, or when FILE is -, read standard input.
The paste command is sort of the opposite of cut. The cut command filters vertical data (columns) from the data and paste takes columns of data from separate files and put them together.
SYNOPSIS
paste [OPTION]... [FILE]...
reuse characters from LIST instead of TABs
paste one file at a time instead of in parallel