gpt4 book ai didi

batch-file - 为什么批解释评论?

转载 作者:行者123 更新时间:2023-12-02 08:07:37 24 4
gpt4 key购买 nike

我有一个简单的批处理测试文件 test.bat,其中包含以下几行:

@echo off
REM IF "%~version_info" == "" echo No version information found
echo test

当我运行它时,我期望得到测试而不是我得到:

The following usage of the path operator in batch-parameter
substitution is invalid: %~version_info" == "" echo No version information found


For valid formats type CALL /? or FOR /?
The syntax of the command is incorrect.

为什么 batch 会尝试解释评论?或者这里发生了什么?如果我删除注释,脚本会按预期打印出测试。

还有 the documentation没有提到任何事情。

最佳答案

我相信这是解析顺序的结果。在这种情况下,这是一个问题,但假设您编写代码(就像我所做的那样):

set "debug=rem"
%debug% echo some debug data

首先,我们替换 %vars% 中的值,然后我们解释该行,使用第一个标记作为要执行的命令。上述结构允许改变命令。

所以有一种疯狂的方法......

关于batch-file - 为什么批解释评论?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50129672/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com