Windows DOS命令问题 - 请

时间:2013-02-02 14:27:10

标签: windows for-loop batch-file dos

我收到以下代码的错误,有什么想法吗?我变得像%% S意外。

我只是在编辑现有的脚本。非常感谢!

for /f %%s in ('dir /b /Od export*')  do (copy /Y "%%s" exportCurrent.txt)

2 个答案:

答案 0 :(得分:0)

您应该仅在批处理脚本中使用%% varname语法。在这里,使用简单的%varname语法:

for /f %s in ('dir /b /Od export*')  do (copy /Y "%s" exportCurrent.txt)

答案 1 :(得分:0)

从命令行使用单个%s,从批处理文件中使用双%%s