3
I’m trying to translate a command from cmd to the powershell but I’m not getting it.
I get multiple.txt files during the month, put them all in the same folder, some have specific terms in the name I use to select and concatenate the similar ones.
But at the end of the month, I concatenate all in a single file to work with all at once, this concatenation process in CMD I performed as follows:
'copy zucchini.txt Todasabobrinhas.txt'
Translating:
copy - command that makes the copy;
zucchini.txt - selects all files with the term "zucchini" in the name to concatenate; Todasabobrinhas.txt - final file with all concatenated files.
When trying to use this command on powershell it executes but does not generate the expected file and also gives no error message.
Can anyone give me a hint to make this process on Powershell?
Thank you for your attention.
Does not work, it executes the command but no result appears...
– ronaldofas
but seeing here, I think the way is this, it generates the file but with the contents of only one file...
– ronaldofas