Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to generate xml in simple format with shell

2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

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!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report