The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

paste - merge corresponding or subsequent lines of files

SYNOPSIS

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

DESCRIPTION

Paste combines the corresponding lines of multiple files. Each line of each file is printed seperated by tab (or by the characters listed in the -d option).

OPTIONS

paste accepts the following options:

-d list

Define the column delimiters. Each character in this list will be used one at a time, as a delimiter for the columns. If there are fewer characters than columns, the characters will be repeated. Standard Perl special characters ("\n", "\t", etc.) are recognized.

-s

Displays the output one file per row, rather than interleaving the lines of the files.

ENVIRONMENT

The working of paste is not influenced by any environment variables.

BUGS

paste has no known bugs, unless you count the use of eval EXPR. Getting it to work under 'strict refs' would be nice, too.

REVISION HISTORY

    $Log: paste,v $
    Revision 1.2  2004/08/05 14:17:43  cwest
    cleanup, new version number on website

    Revision 1.1  2004/07/23 20:10:13  cwest
    initial import

    Revision 1.0  1999/02/26 15:55:05  randy
    Initial revision

AUTHOR

The Perl implementation of paste was written by Randy Yarger, randy.yarger@nextel.com.

COPYRIGHT and LICENSE

This program is copyright by Randy Yarger 1999.

This program is free and open software. You may use, modify, distribute and sell this program (and any modified variants) in any way you wish, provided you do not restrict others to do the same.