[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
- Paste with null delimiter,
julio . neves <=
Re: Paste with null delimiter, Dennis Williamson, 2015/11/03
Re: Paste with null delimiter, Andreas Schwab, 2015/11/03
Re: Paste with null delimiter, Stephane Chazelas, 2015/11/04