mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-25 17:04:01 +00:00
5 lines
91 B
Text
5 lines
91 B
Text
map newrec = {};
|
|
for (oldk, v in $*) {
|
|
newrec[gsub(oldk, " ", "_")] = v;
|
|
}
|
|
$* = newrec
|