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

时间:2016-03-11 18:08:02

标签: windows batch-file cmd task scheduled-tasks

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

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

谢谢你!

1 个答案:

答案 0 :(得分:2)

可能dspace是bat文件。请尝试:

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