标题: [代码合集] 有关For批处理的问题 [打印本页]
作者: cby120 时间: 2017-12-16 22:53 标题: 有关For批处理的问题
本帖最后由 cby120 于 2017-12-16 22:58 编辑
为什么在一行输入可以执行- for /f %%a in (temp.txt) do echo %%a>>help.txt&%%a /?>>help.txt&echo.>>help.txt
复制代码
加括号分行输入就不能执行?- for /f %%a in (temp.txt) do (
- echo %%a>>help.txt
- &%%a /?>>help.txt&echo.>>help.txt
- )
复制代码
另为什么这个脚本不能正常输出 IF 和 FOR 的注释呢?- @echo off
- md helpfile
- cd helpfile
- help>temp.txt
- ping 127.0.0.1 -n 2
- for /f %%a in (temp.txt) do echo %%a>>help.txt&%%a /?>>help.txt
- del temp.txt
- start help.txt
- pause
复制代码
其他的命令都可以输出,只有if,for,和graftabl不行。graftabl是没有了,但是手输 if /?>>help.txt 是可以正常输出的啊
新人求教了
作者: /zhqsystem/zhq 时间: 2017-12-17 01:16
分开语法错误,&
/?和/help不一定都有参数
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |