使用 shell 脚本创建 xml 文件

发布于 2024-08-09 08:59:33 字数 366 浏览 2 评论 0原文

我有一个包含两列的表现

column_1 column_1
12345     12345
73255     73255
71377     71377 

在我想创建一个 xml,

<header>
<value>12345</value>
<value>73255</value>
<value>71377</value>
<footer>

基本上我需要使用选择查询并将任何一个字段放入 xml 的值中。

您能建议如何以最简单的方式做到这一点吗? 非常感谢你的帮助。

I have a table with two columns

column_1 column_1
12345     12345
73255     73255
71377     71377 

Now i want to create an xml like

<header>
<value>12345</value>
<value>73255</value>
<value>71377</value>
<footer>

basically i need to use a select query and put any one of the fields into the values of xml.

could you please suggest how could this be done in an easiest way?
much appreciate your help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别低头,皇冠会掉 2024-08-16 08:59:33

假设您已从数据库中进行选择并将这些列存储在

#!/bin/bash
awk 'BEGIN{ print "<header>"}
NR>1{  print "<value>"$1"</value>" }
END{ print "<footer>"}' file

命令行上名为“file”的文件中

# ./shell.sh
<header>
<value>12345</value>
<value>73255</value>
<value>71377</value>
<footer>

imagine you have selected from the database and stored those columns in a file called "file"

#!/bin/bash
awk 'BEGIN{ print "<header>"}
NR>1{  print "<value>"$1"</value>" }
END{ print "<footer>"}' file

on the command line

# ./shell.sh
<header>
<value>12345</value>
<value>73255</value>
<value>71377</value>
<footer>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文