【发布时间】:2015-03-04 17:22:17
【问题描述】:
我的批处理文件中有这段代码:
@echo off
set real_parent_path=%1%
for %%F in (%real_parent_path%*.*) do call set files=%%files%% %%F
START cmd.exe /k "cd S:\Production\CrushFTP7_PC\modules\photomatixpro5 & PhotomatixCL -z -Z AA8E67A0 -x "S:\Production\CrushFTP7_PC\modules\photomatixpro5\BuiltinPresets\LCP360_settings.xmp" -mp 8 -a2 -am 12 -tr -r 11 -n 0 -ns 0 "_HDR" -bi 8 -h remove -s jpg -d %real_parent_path%HDR\\%files%"
%files% 包含工作文件夹中所有文件的列表,我如何一次将 3 个文件发送到 START 命令?
【问题讨论】:
标签: windows batch-file cmd command-line-arguments