findstr
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了findstr相关的知识,希望对你有一定的参考价值。
findstr 用于在文件中查找带有指定字符的行,相当于 Linux 的 grep 命令
findstr "hello" 1.txt # 在1.txt中查找带有‘hello‘的行
findstr /b "hello" 1.txt # 在1.txt中查找开头是‘hello‘的行
findstr /e "hello" 1.txt # 在1.txt中查找结尾是‘hello‘的行
findstr /i "hello" 1.txt # 搜索时不区分大小写
以上是关于findstr的主要内容,如果未能解决你的问题,请参考以下文章