Skip to content

Commit

Permalink
[csv iterate] multifile bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl committed Aug 27, 2015
1 parent 0da8480 commit 44eb5cd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 2 additions & 0 deletions doc/feature-comparison.html
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@
a,b,c
1,2,3
4,5,6
7,8,9
</pre>
</div>
<p/>
Expand All @@ -147,6 +148,7 @@
<pre>
$ mlr --csv sort -nr b a.csv b.csv
a,b,c
7,8,9
4,5,6
1,2,3
</pre>
Expand Down
9 changes: 8 additions & 1 deletion doc/reference.html
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@
* DKVP, NIDX, CSVLITE, PPRINT, and XTAB formats are intended to handle platform-native text data.
In particular, this means LF line-terminators on Linux/OSX.
* CSV is intended to handle RFC-4180-compliant data.
In particular, this means it *only* handle CRLF line-terminators.
In particular, this means it *only* handles CRLF line-terminators.
* This will change in v2.1.0, at which point there will be a (default-off) LF-termination option
for CSV, multi-char RS/FS/PS, and double-quote support for DKVP.
Double-quoting for CSV:
Expand Down Expand Up @@ -549,6 +549,7 @@
a,b,c
1,2,3
4,5,6
7,8,9
</pre>
</div>
<p/>
Expand All @@ -564,6 +565,10 @@
a 4
b 5
c 6

a 7
b 8
c 9
</pre>
</div>
<p/>
Expand Down Expand Up @@ -2041,6 +2046,7 @@
<pre>
$ mlr --icsv --opprint tac a.csv b.csv
a b c
7 8 9
4 5 6
1 2 3
</pre>
Expand All @@ -2053,6 +2059,7 @@
<pre>
$ mlr --icsv --opprint put '$filename=FILENAME' then tac a.csv b.csv
a b c filename
7 8 9 b.csv
4 5 6 a.csv
1 2 3 a.csv
</pre>
Expand Down

0 comments on commit 44eb5cd

Please sign in to comment.