I can do it with cmd commands like
Code: Select all
for %f in (*.txt) do type "%f" >> output.txt.
In the above command, I need to open 15 different command prompt windows and run the above command.
Is there any way that I can achieve this programmatically like in a batch file?
I have tried a lot of available solution over the net but it did not work for me. I will try more solution.
I am very much new in DOS commands so any kind guidance is appreciated.
Thanks for your help.