How to generate xml in simple format with shell
This article mainly introduces "how to use shell to generate simple format xml". In daily operation, I believe many people have doubts about how to use shell to generate simple format xml. Xiaobian consulted all kinds of materials and sorted out simple and easy-to-use methods of operation. I hope it will be helpful to answer the doubt of "how to use shell to generate simple format xml". Next, please follow the editor to study!
Here is the shell code:
Create_xml.sh
The code is as follows:
#! / bin/bash
# author: dengzhaoqun
# date: 201202/14
Outfile=out
Tabs=0
Put () {
Echo'> $outfile
}
Put_head () {
Put'?'${1}'?
}
Out_tabs () {
Tmp=0
Tabsstr= ""
While [$tmp-lt $((tabs))]
Do
Tabsstr=$ {tabsstr}'\ t'
Tmp=$ ((tmp+1))
Done
Echo-e-n $tabsstr > > $outfile
}
Tag_start () {
Out_tabs
Put $1
Tabs=$ ((tabs+1))
}
Tag_end () {
Tabs=$ ((tabs-1))
Out_tabs
Put'/'${1}
}
Tag_value () {
Out_tabs
Str= ""
Str=$ {1} 'value= "' ${2}'" /'
Put $str
}
Here is the test code:
Ts_xml.sh
The code is as follows:
#! / bin/bash
# author: dengzhaoqun
# date: 20120215
Source'. / create_xml.sh'
Put_head 'xml version='1.0' encoding= "GBK''
Tag_start 'delivery message'
Tag_start 'hardware'
Tag_value 'network card' 1
Tag_end 'hardware'
Tag_end 'delivery message'
The generated xml file is as follows
The code is as follows:
At this point, the study on "how to use shell to generate xml in a simple format" is over. I hope to be able to solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!