exec hof eval --with-context -l '"\(path.Ext(filename)):\(index+1)/\(recordCount)"' -l 'data["@name"]' --simplify a.json b.json c.json
cmp stdout expect-stdout
-- expect-stdout --
".json:1/3": elem1: {
	kind:    "Service"
	"@name": "elem1"
}
".json:2/3": elem2: {
	kind:    "Deployment"
	"@name": "elem2"
}
".json:3/3": elem3: {
	kind:    "Service"
	"@name": "elem3"
}
-- a.json --
{
	"kind": "Service",
	"@name": "elem1"
}
-- b.json --
{
	"kind": "Deployment",
	"@name": "elem2"
}
-- c.json --
{
	"kind": "Service",
	"@name": "elem3"
}
