Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

powershell append file to another file

Get-Content inputFile1.txt, inputFile2.txt | Set-Content joinedFile.txt

# Also supports wildcards
Get-Content inputFile*.txt | Set-Content joinedFile.txt
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #powershell #append #file #file
ADD COMMENT
Topic
Name
7+3 =