Please add to the paste Info page examples and explanation of why
$ paste num2 num2
and
$ paste - - <num2
differ.

$ paste num2 num2
1       1
2       2
$ cat num2 | paste - -
1       2
$ seq 4|paste - -
1       2
3       4
$ paste - - <let3
a       b
c       
$ paste let3 let3
a       a
b       b
c       c


_______________________________________________
Bug-coreutils mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-coreutils

Reply via email to