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