gpt4 book ai didi

bash - 如何使用 grep 获得独特的结果?

转载 作者:行者123 更新时间:2023-11-29 09:25:58 29 4
gpt4 key购买 nike

下面提到的场景是我想作为 jenkins 作业的一部分实现的逻辑的一部分。我正在尝试编写一个 shell 脚本。

我正在使用 grep 命令递归搜索特定字符串。 grep 返回的示例结果如下:

./src/test/java/com/ABC/st/test/pricing/Test1.java: @Tags({ "B-05256" })./src/test/java/com/ABC/st/test/pricing/Test1.java: @MapToVO(storyID = "B-05256: prices in ST") ./src/test/java/com/ABC/st/test/pricing/Test1.java: @Tags({ "B-05256" })./src/test/java/com/ABC/st/test/pricing/Test2.java: @Tags({ "B-05256" })./src/test/java/com/ABC/st/test/pricing/Test2.java: @MapToVO(storyID = "B-05256:Lowest Price of the Season")    ./src/test/java/com/ABC/st/test/pricing/Test2.java: @Tags({ "B-05256" })

I want to extract unique file paths such as:

/src/test/java/com/ABC/st/test/pricing/Test1.java
/src/test/java/com/ABC/st/test/pricing/Test2.java

然后在 maven 命令中使用每个唯一路径。所以:

  1. 如何从 grep 命令给出的结果集中提取唯一的文件路径?

  2. 我如何运行循环之类的东西,在每次迭代中我都使用唯一的文件路径执行 mvn 命令?

最佳答案

如果您只需要匹配文件的名称,grep 有一个命令行开关:

-l, --files-with-matches
Suppress normal output; instead print the name of each input file from which output
would normally have been printed. The scanning will stop on the first match. (-l is
specified by POSIX.)

关于bash - 如何使用 grep 获得独特的结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27724990/

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