Wednesday, December 7, 2011

put multiple files together line by line side by side

# paste file1 file2 file3

Note: paste will read the first line of the first file and add a tab, and read the first line of second file, and so on.

or

# pr -m file1 file2 | more

No comments: