September 2009
Beginner
942 pages
85h 34m
English
paste
paste [options]files
Merge corresponding lines of one or more files into tab-separated vertical columns and write to standard output. Use - to read from standard input, instead of specifying a file. See also cut, join, and pr.
Separate columns with char instead of a tab. You can separate columns with different characters by supplying more than one char.
Print a help message and then exit.
Merge lines from one file at a time.
Print version information and then exit.
Create a three-column file from files x, y, and z:
paste x y z > fileList users in two columns:
who | paste - -Merge each pair of lines into one line:
paste -s -d"\t\n" list