I have a bunch of small PowerShell functions, each in their own file and I am trying to combine them into a larger file.
Using the low-tech approach of the DOS copy command by doing: copy /Y /A functions\*.ps1 super.ps1
works fine however where two files are joined it is inserting: 
I'm guessing it's the line break characters showing up (difference of encoding), but how do I prevent these characters from showing up?