gpt4 book ai didi

linux - 如何在 Linux 中返回多个文件中的字符串计数

转载 作者:太空狗 更新时间:2023-10-29 12:40:24 24 4
gpt4 key购买 nike

我有多个 xml 文件,我想计算其中的一些字符串。如何在 Linux 中返回带文件名的字符串计数?我要计算 InvoıceNo 的字符串:结果将是;

       test.xml InvoiceCount:2
test1.xml InvoiceCount:5
test2.xml InvoiceCount:10

最佳答案

你或许可以使用下面的代码

PATTERN=InvoiceNo

for file in *.xml
do
count=$(grep -o $PATTERN "$file" | wc -l)
echo "$file" InvoiceCount:$count
done

输出

test.xml InvoiceCount:1
test1.xml InvoiceCount:2
test2.xml InvoiceCount:3

引用自:https://unix.stackexchange.com/questions/6979/count-total-number-of-occurrences-using-grep

关于linux - 如何在 Linux 中返回多个文件中的字符串计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46903912/

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