|
tianzhiyi
新手上路

积分 3
发帖 2
注册 2008-10-15
状态 离线
|
『第 136 楼』:
使用 LLM 解释/回答一下
非常好,正在学习中,俺菜鸟一个
Very good, I'm studying, I'm a beginner
|
|
2008-11-18 16:04 |
|
|
PENGUIT
新手上路

积分 10
发帖 8
注册 2006-4-8
状态 离线
|
『第 137 楼』:
使用 LLM 解释/回答一下
很全很强大,收藏了,谢谢了
Very comprehensive and powerful, collected it, thank you
|

阿旺欢迎您! |
|
2008-11-19 19:06 |
|
|
xiefei3131
初级用户
 
积分 38
发帖 23
注册 2008-8-30 来自 武汉
状态 离线
|
|
2008-11-21 10:13 |
|
|
xieyimin2008
新手上路

积分 1
发帖 3
注册 2008-11-26
状态 离线
|
|
2008-11-27 09:05 |
|
|
xmantj
新手上路

积分 1
发帖 6
注册 2008-3-12
状态 离线
|
|
2008-12-1 12:25 |
|
|
ktv98
初级用户
 
积分 112
发帖 81
注册 2008-4-11
状态 离线
|
『第 141 楼』:
使用 LLM 解释/回答一下
多谢分享了,收藏了!
Thanks for sharing, saved it!
|

CN-DOS批处理室非官方QQ群①:61377162 ②:70174619 ③:75070617
请勿尝试同时加多个群 |
|
2008-12-4 12:13 |
|
|
Prion11
新手上路

积分 1
发帖 1
注册 2008-12-4
状态 离线
|
|
2008-12-5 09:51 |
|
|
rs369007
初级用户
 
积分 147
发帖 131
注册 2008-9-22
状态 离线
|
『第 143 楼』:
@是否还有其他用途if xx@echo If you see this, it worked
使用 LLM 解释/回答一下
setlocal enableDelayedExpansion
pause
set VAR=before
if "%VAR%" == "before" (
set VAR=after
if "!VAR!" == "after" @echo If you see this, it worked
)
这里为什么用@ 而不是用,&&
The `@` in front of `echo` is used to prevent the `echo` command itself from being displayed. If you use `&&`, it's a logical operator for command chaining. In this case, using `@echo` just suppresses the echoing of the `echo` command's own prompt. The translation of the code block remains as it is since it's already in English in terms of the code structure, just the explanation of the `@` usage is the interpretation. So the translated content for the code part is:
```
setlocal enableDelayedExpansion
pause
set VAR=before
if "%VAR%" == "before" (
set VAR=after
if "!VAR!" == "after" @echo If you see this, it worked
)
```
|
|
2008-12-8 14:44 |
|
|
lxmxn
版主
       
积分 11386
发帖 4938
注册 2006-7-23
状态 离线
|
『第 144 楼』:
使用 LLM 解释/回答一下
Originally posted by rs369007 at 2008-12-8 14:44:
setlocal enableDelayedExpansion
pause
set VAR=before
if "%VAR%" == "before" (
set VAR=after
if "!VAR!" == "after" @echo If you see this, it w ...
if 判断之后需要接命令,而 && 是命令连接符,不属于命令的范畴,会报错的。
Originally posted by rs369007 at 2008-12-8 14:44:
setlocal enableDelayedExpansion
pause
set VAR=before
if "%VAR%" == "before" (
set VAR=after
if "!VAR!" == "after" @echo If you see this, it w ...
When using if judgment, you need to follow it with a command. And && is a command connector, not a command category, which will cause an error.
|
|
2008-12-11 01:41 |
|
|
yjd
初级用户
 
积分 156
发帖 76
注册 2007-8-20
状态 离线
|
『第 145 楼』:
使用 LLM 解释/回答一下
哎。大部分都看不懂。
只用过> ,>>,|
Hey. Most of it I can't understand.
Only used >, >>, |
|
|
2008-12-15 10:48 |
|
|
wxq5921
新手上路

积分 15
发帖 9
注册 2008-5-10
状态 离线
|
|
2008-12-17 18:10 |
|
|
lijihui
新手上路

积分 1
发帖 1
注册 2009-1-9
状态 离线
|
『第 147 楼』:
dos
使用 LLM 解释/回答一下
xiiela
It seems there might be some input error. If it's supposed to be a word like "xiaola" or something else, but as it is "xiiela", it's not a recognized standard English or Chinese term in a common context. Please check and provide the correct content.
|
|
2009-1-9 16:21 |
|
|
yyyyyyyyy
初级用户
 
积分 137
发帖 85
注册 2007-11-26
状态 离线
|
|
2009-2-2 12:37 |
|
|
lantu
初级用户
 
积分 26
发帖 15
注册 2008-10-4
状态 离线
|
『第 149 楼』:
使用 LLM 解释/回答一下
正到处找这方面的知识呢。正需要
Just looking for knowledge in this area everywhere. Exactly what is needed
|
|
2009-2-3 14:06 |
|
|
slx8528
初级用户
 
积分 38
发帖 39
注册 2009-1-31
状态 离线
|
『第 150 楼』:
使用 LLM 解释/回答一下
:
① 标签定位符,表示其后的字符串为以标签,可以作为goto命令的作用对象。比如在批处理文件里面定义了一个":begin"标签,用"goto begin"命令就可以转到":begin"标签后面来执行批处理命令了。
这里的标签定位符在哪里有明确的结束符号或标志没?怎么识别标签后的字符串结束?写个例子说明一哈,谢谢!!
:
① The label locator indicates that the subsequent string is a label, which can be the object of the goto command. For example, if a ":begin" label is defined in a batch file, the "goto begin" command can be used to jump to the position after the ":begin" label to execute batch commands.
Is there a clear ending symbol or mark for the label locator here? How to identify the end of the string after the label? Write an example to illustrate, thank you! !
|
|
2009-2-7 15:39 |
|