标签:大小写 grep span 字符 区分大小写 指定 命令 查找 开头
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 # 搜索时不区分大小写
标签:大小写 grep span 字符 区分大小写 指定 命令 查找 开头
原文地址:http://www.cnblogs.com/pzk7788/p/8005302.html