command line - Is there replacement for cat on Windows -


i need join 2 binary files *.bat script on windows.

how can achieve that?

windows type command works unix cat.

example 1:

type file1 file2 > file3 

is equivalent of:

cat file1 file2 > file3 

example 2:

type  *.vcf > all_in_one.vcf   

this command merge vcards one.


Comments

Popular posts from this blog

windows - Why does Vista not allow creation of shortcuts to "Programs" on a NonAdmin account? Not supposed to install apps from NonAdmin account? -

c++ - How do I get a multi line tooltip in MFC -

unit testing - How to mock PreferenceManager in Android? -