I'm trying to get a batch equivalent of &
from shell.
curl --referer http://fs1d-h.st/cxX -o ~/Library/Application\ Support/download.part1 $url1 &
curl --referer http://fs1d-h.st/1w9 -o ~/Library/Application\ Support/download.part2 $url2
The first curl command executes in the background, and then runs the second one immediately after the first is started. The result is two downloads (or other commands) running at the same time.
I've looked around and I can seem to find a way to do this in windows cmd. Any ideas?