同时批量运行多个命令?

时间:2013-09-29 15:23:23

标签: batch-file

我正在尝试从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

第一个curl命令在后台执行,然后在第一个启动后立即运行第二个curl命令。结果是同时运行两次下载(或其他命令)。

我环顾四周,似乎在windows cmd中找到了一种方法。有什么想法吗?

2 个答案:

答案 0 :(得分:1)

start "" "program1" && start "" "program2" [/wait]

只有在你将控件返回到调用它的shell或批处理文件之前等待第二个完成时才使用wait。

答案 1 :(得分:0)

@echo off

启动file1“location”|启动file2“location”*最推荐

启动file1“location”&&启动file2“location”