gpt4 book ai didi

xml - grep 多个字符串并在变量中存储/打印下一行值

转载 作者:行者123 更新时间:2023-12-05 02:26:55 24 4
gpt4 key购买 nike

我正在尝试从 pom.xml 文件中 grep 多个字符串...例如下面是 xml 文件的内容

<?xml version="1.0" encoding="UTF-8"?>

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.bluesoft.muleesb</groupId>
<artifactId>Magellan23888Adapter</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>mule-application</packaging>

<name>Magellan23888Adapter</name>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<app.runtime>4.3.0</app.runtime>
<mule.maven.plugin.version>3.3.5</mule.maven.plugin.version>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.mule.tools.maven</groupId>
<artifactId>mule-maven-plugin</artifactId>
<version>${mule.maven.plugin.version}</version>
<extensions>true</extensions>
<configuration>
<sharedLibraries>
<sharedLibrary>
<groupId>com.ibm.mq</groupId>
<artifactId>com.ibm.mq.allclient</artifactId>
</sharedLibrary>
</sharedLibraries>
<classifier>mule-application</classifier>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>releases</id>
<name>bluesoft releases</name>
<url>http://nexus.bluesoft.com/repository/releases</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<name>bluesoft snapshots</name>
<url>http://nexus.bluesoft.com/repository/snapshots</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>com.mulesoft.connectors</groupId>
<artifactId>mule-x12-connector</artifactId>
<version>2.6.2</version>
<classifier>mule-plugin</classifier>
<exclusions>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.mule.connectors</groupId>
<artifactId>mule-objectstore-connector</artifactId>
<version>1.1.7</version>
<classifier>mule-plugin</classifier>
</dependency>
<dependency>
<groupId>com.ibm.mq</groupId>
<artifactId>com.ibm.mq.allclient</artifactId>
<version>9.2.1.0</version>
</dependency>
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-json-module</artifactId>
<version>2.1.3</version>
<classifier>mule-plugin</classifier>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
</dependency>
<dependency>
<groupId>org.mule.connectors</groupId>
<artifactId>mule-http-connector</artifactId>
<version>1.5.6</version>
<classifier>mule-plugin</classifier>
</dependency>
<dependency>
<groupId>org.mule.connectors</groupId>
<artifactId>mule-file-connector</artifactId>
<version>1.3.3</version>
<classifier>mule-plugin</classifier>
</dependency>
<dependency>
<groupId>com.mulesoft.connectors</groupId>
<artifactId>mule-ibm-mq-connector</artifactId>
<version>1.6.3</version>
<classifier>mule-plugin</classifier>
</dependency>
<dependency>
<groupId>org.mule.connectors</groupId>
<artifactId>mule-sftp-connector</artifactId>
<version>1.4.0</version>
<classifier>mule-plugin</classifier>
</dependency>
<dependency>
<groupId>com.mulesoft.modules</groupId>
<artifactId>mule-secure-configuration-property-module</artifactId>
<version>1.1.0</version>
<classifier>mule-plugin</classifier>
</dependency>
<dependency>
<groupId>org.mule.connectors</groupId>
<artifactId>mule-email-connector</artifactId>
<version>1.4.1</version>
<classifier>mule-plugin</classifier>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.16.0</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.16.0</version>
</dependency>
</dependencies>

<repositories>
<repository>
<id>bluesoft-nexus</id>
<name>bluesoft Nexus</name>
<url>https://nexus.bluesoft.com/content/groups/public</url>
<layout>default</layout>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>bluesoft-nexus-plugins</id>
<name>bluesoft Nexus</name>
<layout>default</layout>
<url>https://nexus.bluesoft.com/content/groups/public</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>

</project>

我正在尝试运行以下命令以从文件中获取上述输出

grep -i -A3 'com.mulesoft.connectors\|org.mule.connectors' pom.xml

当上述条件匹配时,我想打印如下值,例如

我正在尝试从下面的命令中捕获所有匹配的模式

grep -i -A3 'com.mulesoft.connectors\|org.mule.connectors' pom.xml 

我正在尝试通过此命令获取 artifactId 和版本

预期输出:

artifactId value,version
------------------------
mule-ibm-mq-connector,1.8.3
mule-file-connector,1.5.2
mule-salesforce-connector,10.8.1
mule-email-connector,1.1.8
mule-connector,1.4.1

最佳答案

xmllint 这样的 XML 解析器可以更好地完成这项任务,但是由于某些原因您不能安装新工具,您可以考虑使用 grep | gnu-awk 解决方案:

grep -i -A3 'com\.mulesoft\.connectors\|org\.mule\.connectors' pom.xml |
awk -v RS='--' -v OFS=, 'BEGIN {print "artifactId value,version"}
{gsub(/<\/?[^>]+>/, ""); print $2, $3}'

artifactId value,version
mule-x12-connector,2.6.2
mule-objectstore-connector,1.1.7
mule-http-connector,1.5.6
mule-file-connector,1.3.3
mule-ibm-mq-connector,1.6.3
mule-sftp-connector,1.4.0
mule-email-connector,1.4.1

关于xml - grep 多个字符串并在变量中存储/打印下一行值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73546608/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com