查找的计数结果
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查找的计数结果相关的知识,希望对你有一定的参考价值。
# Most any solutions use a .... | wc -l, which is wrong. It breaks (at least) if # files contain newlines. Thus the right way to do it is: find [find expression] -exec printf '.' ; | wc -c (or, more efficiently) find [find expression] -exec printf %.s. {} + | wc -c # e.g. to find all jpg-files which are larger than 1kB, you can use: find . -type f -name *.jpg -size +1024c -exec printf '.' ; | wc -c # the "weird" -size argument is POSIX compliant. On a GNU system you could use # "-size +1k"
以上是关于查找的计数结果的主要内容,如果未能解决你的问题,请参考以下文章
在c#中找出一个数组中出现次数最多的元素,求各种方法,要详细的代码