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

Jon*_*nas 21 windows printing command-line

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

在 Linux 中,我可以使用less textfile.txt,more textfile.txtcat textfile.txt

在 Windows 中执行此操作的命令是什么?

Hel*_*o71 32

type textfile.txt 如果你想一页一页地看,more textfile.txt.

  • 或者只是`more textfile.txt` ...避免无用地使用`type` (7认同)
  • 这真是一个滞后;) (2认同)