zip columns from separate files together in bash

NAME

paste — merge corresponding or subsequent lines of files

SYNOPSIS

paste [-s] [-d list] file ...

DESCRIPTION

The paste utility concatenates the corresponding lines of the given input
files, replacing all but the last file’s newline characters with a single
tab character, and writes the resulting lines to standard output.

Leave a Comment