How to display a text file content in CMD

cmd

I want to display the content of a text file in a CMD window. In addition, I want to see the new lines that added to file, like tail -f command in Unix.

Best Answer

You can use the more command. For example:

more filename.txt

Take a look at GNU utilities for Win32 or download it: