by @kodeazy

cat is not recognized as an internal or external command?

Home » linux » cat is not recognized as an internal or external command?

I was trying to read a file in command prompt in windows using cat filename syntax.
But I was getting below error.

D:\linux-learning>cat file1.txt
'cat' is not recognized as an internal or external command,
operable program or batch file.

In windows we do not have cat command to view the content inside the file
To view the content we use type filename command
Below is an example syntax

D:\linux-learning>type file1.txt
File Read successfully