如何在 Windows 的命令提示符下打印文本文件?

如何在 Windows 的命令提示符下打印文本文件?

如何在 Windows 的命令提示符上打印文本文件的内容?

在 Linux 中我可以使用less textfile.txt,more textfile.txt或者cat textfile.txt

在 Windows 中这个命令是什么?

答案1

type textfile.txt 如果你想逐页查看,more textfile.txt

答案2

为了打印多个文件(例如 textfile_1.txt、textfile_2.txt)的内容,以下命令也有效:

    type textfile*

相关内容