Answers for "echo file in windows command"

4

echo file in windows command

Just use type command in Windows as follows:
C:\>echo hi > a.txt
C:\>echo bye > b.txt
C:\>type a.txt b.txt > c.txt
C:\>type c.txt
Posted by: Guest on October-17-2020

Code answers related to "echo file in windows command"

Browse Popular Code Answers by Language