bug-bash
[Top][All Lists]
Advanced

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

Paste with null delimiter


From: julio . neves
Subject: Paste with null delimiter
Date: Tue, 3 Nov 2015 08:29:17 -0800 (PST)
User-agent: G2/1.0

An example is better than thousand words:

$ seq 1 2 9 > odd
$ seq 2 2 10 > even
$ paste -d "" odd even
12
34
56
78
910
$ paste -d"" odd even
2
4
6
8
10

Like you can see, with no space between the option (-d) and the null parameter 
(""), we have an unexpected result


reply via email to

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