gpt4 book ai didi

Windows 批处理 - ECHO 正在更改 %ERRORLEVEL%

转载 作者:可可西里 更新时间:2023-11-01 10:04:23 24 4
gpt4 key购买 nike

我有以下 .bat 片段

echo about to start echoing, Errorlevel=%Errorlevel%

echo. >> ../time.txt

echo Just echod a new line into time.txt, Errorlevel=%Errorlevel%

echo | set/p=start=%time%, >> ../time.txt

echo about to start with emake, Errorlevel=%ERRORLEVEL%

输出是:

about to start echoing, Errorlevel=0
Just echod a new line into time.txt, Errorlevel=0
about to start with emake, Errorlevel=1

为什么行 echo | set/p=start=%time%, >> ../time.txt 更改 %ERRORLVEL%?

最佳答案

该行将 ERRORLEVEL 设置为 1,因为 SET/P 在设置值失败时失败(将 ERRORLEVEL 设置为 1),并且您的 set/p=start=%time%, 永远不会设置值。第一个 = 之后的所有内容都被视为提示,因此没有变量,命令将始终“失败”。

我不知道你想用那条线做什么,所以我不能给你一个解决方案。但是您应该注意一件事 - SET /P is useless for setting variables if used within a pipe .

关于Windows 批处理 - ECHO 正在更改 %ERRORLEVEL%,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37863003/

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