|
|
This article does not cite any references or sources. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed. (December 2009) |
paste is a Unix command line utility which is used to join files horizontally (parallel merging) by outputting lines consisting of the sequentially corresponding lines of each file specified, separated by tabs, to the standard output. It is effectively the horizontal equivalent to the utility cat command which operates on the vertical plane of two or more files.
Example
To paste several columns of data together into the file www from files who, where, and when:
paste who where when > www
If the files contain:
| who | where | when |
|---|---|---|
|
Sam |
Detroit |
January 3 |
This creates the file named www containing:
Sam Detroit January 3 Dave Edgewood February 4 Sue Tampa March 19
See also
|
||||||||||||||||||||||||||
This entry is from Wikipedia, the leading user-contributed encyclopedia. It may not have been reviewed by professional editors (see full disclaimer)




