Board logo

标题: [代码合集] 有关For批处理的问题 [打印本页]

作者: cby120    时间: 2017-12-16 22:53     标题: 有关For批处理的问题

本帖最后由 cby120 于 2017-12-16 22:58 编辑

为什么在一行输入可以执行
  1. for /f %%a in (temp.txt) do echo %%a>>help.txt&%%a /?>>help.txt&echo.>>help.txt
复制代码
加括号分行输入就不能执行?
  1. for /f %%a in (temp.txt) do (
  2. echo %%a>>help.txt
  3. &%%a /?>>help.txt&echo.>>help.txt
  4. )
复制代码
另为什么这个脚本不能正常输出 IF 和 FOR 的注释呢?
  1. @echo off
  2. md helpfile
  3. cd helpfile
  4. help>temp.txt
  5. ping 127.0.0.1 -n 2
  6. for /f %%a in (temp.txt) do echo %%a>>help.txt&%%a /?>>help.txt
  7. del temp.txt
  8. start help.txt
  9. 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