标签: python xml ubuntu
在第一步中,我在python脚本中处理一些文件。 由于脚本是不可更改的,因为它打印出重要信息,我想将其保存为xml。 到现在为止,我做了:python script.py> Out.xml
但是:如果有“&”这样的迹象在输出中,它们应该以xml-chars转换。我怎么能这样做?
非常感谢!
答案 0 :(得分:2)
更改脚本以XML格式保存 或使用sed
python script.py | sed -e "s/&/&/" > out.xml