mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 18:25:45 +00:00
9 lines
125 B
Bash
9 lines
125 B
Bash
echo x=1,y=2 | mlr put '
|
|
do {
|
|
$[NF+1] = "";
|
|
if (NF == 5) {
|
|
break
|
|
}
|
|
} while (NF < 10);
|
|
$foo = "bar"
|
|
'
|