I am trying to replicate the functionality of the "cat" command in Unix.
I would like to avoid solutions where I explicitly read both files into variables, concatenate the variables together, and then write out the concatenated variable.
|
I am trying to replicate the functionality of the "cat" command in Unix. I would like to avoid solutions where I explicitly read both files into variables, concatenate the variables together, and then write out the concatenated variable. |
|||
|
|
|
You can simply use By the way, be careful with the latter method - if you try to output to |
|||||||
|
|
In cmd , you can do this:
In Powershell this would be While the Powershell way would be to use gc, the above will be pretty fast, especially for large files. And it can be used on on non-ascii files too using the |
||||
|
You could use the add-content cmdlet, maybe is little more faster than the other solutions because I don't retrieve the content of the first file.
|
|||
|
|
|
you can do something like get-content input_file1 > output_file get-content input_file2 >> output_file where > is an alias for "out-file" and >> is an alias for "out-file -append" |
|||
|
|