mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-18 00:45:47 +00:00
8 lines
151 B
Bash
Executable file
8 lines
151 B
Bash
Executable file
mlr --from data/ragged.csv --fs comma --nidx put '
|
|
@maxnf = max(@maxnf, NF);
|
|
@nf = NF;
|
|
while(@nf < @maxnf) {
|
|
@nf += 1;
|
|
$[@nf] = ""
|
|
}
|
|
'
|