gpt4 book ai didi

linux - 如何计算字符串/子字符串出现在 Unix 中某个目录的文件名中的实例数?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:17:00 24 4
gpt4 key购买 nike

假设我当前的工作目录名为 my_dir,其中有几个不同的文件:

file1
file_dog
filedog_1
dog_file

如何计算目录中“dog”出现的次数(应该是 3 次)?

谢谢!

最佳答案

您可以使用 grep 的 -c 选项

grep -c:
Suppress normal output; instead print a count of matching lines for each input file.

ls -1 | grep -c dog

或:

ls -1 *[dD][oO][gG]* | wc -l

关于linux - 如何计算字符串/子字符串出现在 Unix 中某个目录的文件名中的实例数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28820029/

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