i'm trying to made a batch that run multiples cmd and they made a log file, i already google it but i didn't found any solution about this :(
ping google.com >> 1.txt
ping facebook.com >> 2.txt
ping twitter.com >> 3.txt
this is an example of what I want to do, start 3 different CMD where a simple ping is made and save a txt (as if were a log)
if I put a start before of the command, it creates the text and the pings, but it doesn't register in the txt file, it shows blank
start ping google.com >> 1.txt
start ping facebook.com >> 2.txt
start ping twitter.com >> 3.txt
basically, I want that all the commands run at the same time in just one batch file, I don't want to wait that the fist command finished and start the next one