miller/docs/data/single-for-example-2.sh
2020-09-27 11:29:50 -04:00

8 lines
140 B
Bash
Executable file

mlr -n put '
end {
o = {1:2, 3:{4:5}};
for (key in o) {
print " key:" . key . " valuetype:" . typeof(o[key]);
}
}
'