Currently The below prints in color cat data.xml <people><person><name>Alice</name><age>30</age></person><person><name>Bob</name><age>25</age></person></people> yq -p=xml -oy -C data.xml But the below does not yq -p=xml -ox -C data.xml
Currently
The below prints in color
cat data.xml
Alice30Bob25
yq -p=xml -oy -C data.xml
But the below does not
yq -p=xml -ox -C data.xml