-
I am writing a script that takes two parameters, sourceFile and destFile. sourceFile will include a wildcard and grab all matching text files, then concatenate them into the destFile. I thought it should be as simple as: param([string]$sourceFile, [string]$destFile) cat $sourceFile > $destFile The...