bug-coreutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

add paste num2 num2 vs. - - explanation


From: Dan Jacobson
Subject: add paste num2 num2 vs. - - explanation
Date: Wed, 29 Oct 2003 11:23:08 +0800
User-agent: Gnus/5.1002 (Gnus v5.10.2) Emacs/21.3 (gnu/linux)

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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]