在 Windows 7 上创建批处理实用程序脚本以调用可执行文件。它基本上有效,除了我的第二个 IF 语句。尝试了许多不同的东西。
我的意图是为每个命令行参数调用“DoSomething”。那部分有效!仅当命令行上没有给出参数时,第二个 IF 语句才会打印帮助消息。嗯,这就是意图。那不是它正在做的事情。
@ECHO OFF
:Start
SET a_file_was_processed="false"
IF "%1" NEQ "" (
SET a_file_was_processed="true"
ECHO Extracting table %1 from database.
DoSomething word%1 > output_%1.txt
ECHO Finished extract table to file output_%1.txt
SHIFT
GOTO Start
)
if a_file_was_processed NEQ "true" (
ECHO Invoke this script as: Extract_From_sdf table_name1 table_name2
)
想法?