mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-20 01:46:26 +00:00
15 lines
180 B
Bash
15 lines
180 B
Bash
mlr put '
|
|
begin {
|
|
@i_cumu = 0;
|
|
}
|
|
|
|
@i_cumu += $i;
|
|
$* = {
|
|
"z": $x + y,
|
|
"KEYFIELD": $a,
|
|
"i": @i_cumu,
|
|
"b": $b,
|
|
"y": $x,
|
|
"x": $y,
|
|
};
|
|
' data/small
|