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

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

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -