在Windows XP中,我希望它将匹配模式selenium*.jar
的唯一文件复制到本地目录。
我试过了:
pushd \\remote.mydomain.com\selenium\
FOR %f IN (selenium*.jar) DO copy %f C:\selenium
其中\\remote.mydomain.com
是共享目录,其内容托管在远程服务器上。
但我收到错误:
C:\selenium>pushd \\remote.mydomain.com\selenium\
f was unexpected at this time.
答案 0 :(得分:2)
在脚本中将%f
替换为%%f
。 %f
仅在您直接在命令提示符处输入命令时才有效,但不在批处理文件中。在命令行上键入help for
会向您显示第二段中描述此行为的手册。