Answers for "powershell append file to another file"

1

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
Posted by: Guest on February-22-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language