简介

        本文介绍Windows查看文件内容相关命令。

命令

命令

作用

示例

find

查找字符串

find "abc" c:test.txt

findstr

查找字符串

type a.txt | findstr "hello"   //在a.txt的打印信息中查找hello

type

显示文本文件内容

type c:\11.txt

more

逐屏显示文件内容

more conf.ini  //  逐屏的显示当前目录下conf.ini的文本内容   

【空格:下一屏 q:退出 】