Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用下面的命令,我可以在当前目录中找到给定字符串的总出现次数。
cat * | grep -c 'nike'
同样,如何获取给定关键字至少出现一次的文件总数?
谢谢一堆
grep -l 耐克 * | wc -l
不要用猫。
grep -l 只打印文件名
grep -l 'nike' * | wc -l
将 grep 与 wc 一起使用,-l 选项用于行。
grep -R "模式" .|wc -l