批处理文件在完成所有行之前关闭

时间:2012-03-19 15:57:14

标签: batch-file command-prompt

我正在使用批处理文件连续运行几个脚本。

批处理文件如下

rawler http://example.com > results.txt
ruby parse.rb
notepad results2.txt

完成第一行后,命令提示符将自行关闭。

我在这里做错了什么?


修改

Rawler是一颗红宝石

1 个答案:

答案 0 :(得分:2)

可能是rawler批处理文件吗?在这种情况下,您需要添加call

call rawler http://example.com > results.txt