type
Funciona com command.com
, cmd
e PowerShell (embora no segundo seja um alias para Get-Content
, então é cat
, então você pode usar qualquer um deles).
Do artigo da Wikipédia (grifo meu):
In computing, type is a command in various VMS. AmigaDOS, CP/M, DOS, OS/2 and Microsoft Windows command line interpreters (shells) such as COMMAND.COM, cmd.exe, 4DOS/4NT and Windows PowerShell. It is used to display the contents of specified files. It is analogous to the Unix cat command.
C:\>echo hi > a.txt
C:\>echo bye > b.txt
C:\>type a.txt b.txt > c.txt
C:\>type c.txt
hi
bye