首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

shell解析xml,该如何解决

2013-07-08 
shell解析xml?xml version1.0 encodingISO-8859-1?propertiesport10000 URItcp://localhost

shell解析xml
<?xml version="1.0" encoding="ISO-8859-1"?>
<properties  port="10000" URI="tcp://localhost" />

怎么把port的值解析出来
[解决办法]

sed '/port=/!d; s/.*port="\([0-9]\+\)".*/\1/' urfile

[解决办法]
cat file.xml 
[解决办法]
 grep "port=" 
[解决办法]
 awk -F """ '{print $2}'
file.xml里面的内容就是
<?xml version="1.0" encoding="ISO-8859-1"?>
 <properties  port="10000" URI="tcp://localhost" />

热点排行