windows 上同一个 bat 文件中的多个命令?

multiple commands in the same bat file on windows?

cd c:\dspace\bin


dspace generate-sitemaps,
dspace oai import,
dspace index-discovery,
dspace index-authority,
dspace stats-util -o,
dspace filter-media,
dspace curate -q admin_ui,
dspace checker -l -p,
dspace checker -d 1h -p,
dspace checker-emailers,
dspace cleanup,
dspace stats-util -s

我如何运行将所有这些命令放在同一个文件中,我尝试了更多这种方式,所以脚本运行是第一个。 运行 他们的正确方法是什么?

谢谢!

可能 dspace 是蝙蝠 file.Try 具有:

cd c:\dspace\bin


call dspace generate-sitemaps
call dspace oai import
call dspace index-discovery
call dspace index-authority
call dspace stats-util -o
call dspace filter-media
call dspace curate -q admin_ui
call dspace checker -l -p
call dspace checker -d 1h -p
call dspace checker-emailers
call dspace cleanup
call dspace stats-util -s