|
shaqiu
初级用户
 
积分 27
发帖 15
注册 2007-3-24
状态 离线
|
『第 61 楼』:
使用 LLM 解释/回答一下
太厉害了
向这位同志学习
That's amazing. Learn from this comrade.
|
|
2007-4-9 03:14 |
|
|
aojian12hen
新手上路

积分 8
发帖 4
注册 2007-4-8 来自 哈尔滨
状态 离线
|
『第 62 楼』:
使用 LLM 解释/回答一下
感谢分享..学了很多..
Thanks for sharing.. Learned a lot..
|
|
2007-4-9 03:46 |
|
|
mtiankong
初级用户
 
积分 70
发帖 38
注册 2007-3-24
状态 离线
|
|
2007-4-11 09:35 |
|
|
ymbbmq
新手上路

积分 4
发帖 2
注册 2007-4-9
状态 离线
|
|
2007-4-11 12:04 |
|
|
waitingcd
初级用户
 
积分 75
发帖 37
注册 2007-4-11
状态 离线
|
|
2007-4-11 22:51 |
|
|
jashonx
初级用户
  铂金会员
积分 44
发帖 21
注册 2007-4-15
状态 离线
|
『第 66 楼』:
使用 LLM 解释/回答一下
这个值得一看,是个好东西,顶!坚决顶!
This is worth taking a look, it's a good thing, top! Firmly top!
|
|
2007-4-24 09:07 |
|
|
minmin888
初级用户
 
积分 127
发帖 62
注册 2007-4-19
状态 离线
|
|
2007-5-8 14:07 |
|
|
minmin888
初级用户
 
积分 127
发帖 62
注册 2007-4-19
状态 离线
|
|
2007-5-8 14:07 |
|
|
wentaowen
初级用户
 
积分 38
发帖 17
注册 2006-12-19
状态 离线
|
『第 69 楼』:
使用 LLM 解释/回答一下
已经全部收下的了,谢谢.
I've received it all, thank you.
|
|
2007-5-10 14:59 |
|
|
qzwqzw
银牌会员
     天的白色影子
积分 2343
发帖 636
注册 2004-3-6
状态 离线
|
『第 70 楼』:
使用 LLM 解释/回答一下
建议按照键盘顺序重新排一下序
再做几点修正
@ 隐藏命令的回显
改为“隐藏命令行的回显”,命令的回显应由 >nul 2>nul 等句式隐藏
%
单个%紧跟0-9的一个数字表示引用命令行参数;
用于for中表示引用循环变量;
连续的两个%表示执行时脱为一个%
应改为
两个单独的%包含一个字符串,表示引用以此串为名的环境变量;
两个连续的%表示在预处理中脱为一个%;
在for语句的in子句之前,单个%(命令行)或者连续两个%(批处理)紧跟一个字符(可以是字母、数字和一些特定字符),表示指定一个循环或者遍历指标变量;
在for语句中,使用与in之前指定的指标变量相同的串,表示引用这个指标变量;
在批处理中,单个%紧跟0-9的一个数字表示引用本批处理当前执行时的命令行参数;
其它情况下,%将会被脱去(批处理)或保留(命令行)
^
取消转义字符,即将所有转义字符的转义作用关闭。
应改为
取消特定字符的转义作用,比如& | > < ! "等,但不包括%
因为转义字符的定义比较模糊,至于%究竟算不算转义字符,有待讨论
另外,考虑将句柄复制加入
>& 将一个句柄的输出写入到另一个句柄的输入中。
<& 从一个句柄读取输入并将其写入到另一个句柄输出中。
Suggest to reorder according to the keyboard order
Make a few more corrections
@ Hide the echo of the command
Change to "Hide the echo of the command line", and the echo of the command should be hidden by sentences like >nul 2>nul, etc.
%
A single % followed by one digit from 0-9 indicates referencing the command line parameter;
Used in for to indicate referencing the loop variable;
Two consecutive %s mean to be converted into one % during execution
Should be changed to
Two separate %s containing a string indicate referencing the environment variable with this string as the name;
Two consecutive %s mean to be converted into one % during preprocessing;
Before the in clause of the for statement, a single % (command line) or two consecutive %s (batch) followed by a character (can be letters, numbers, and some specific characters) indicate specifying a loop or traversal index variable;
In the for statement, use the same string as the index variable specified before in to indicate referencing this index variable;
In the batch, a single % followed by one digit from 0-9 indicates referencing the current command line parameter when the batch is executed;
In other cases, % will be removed (batch) or retained (command line)
^
Cancel the escape character, that is, close the escape function of all escape characters.
Should be changed to
Cancel the escape function of specific characters, such as & | > < ! ", etc., but not including %
Because the definition of escape characters is relatively vague, and whether % is an escape character or not is open to discussion
In addition, consider adding handle duplication
>& Write the output of one handle to the input of another handle.
<& Read input from one handle and write it to the output of another handle.
|
|
2007-5-27 16:53 |
|
|
lxmxn
版主
       
积分 11386
发帖 4938
注册 2006-7-23
状态 离线
|
『第 71 楼』:
使用 LLM 解释/回答一下
再次感谢 qzwqzw 兄对此贴的关注和建议,稍后我会把它重新整理放到批处理室去。
Once again, thank you, Brother qzwqzw, for your attention and suggestions on this post. I will sort it out again and put it in the Batch Processing Room later.
|
|
2007-5-27 17:02 |
|
|
rechard
新手上路

积分 18
发帖 9
注册 2007-5-24
状态 离线
|
『第 72 楼』:
使用 LLM 解释/回答一下
都收了.难得这么全面的介绍符号.
All received. It's rare to have such a comprehensive introduction to symbols.
|

不以物喜,不以己悲. |
|
2007-5-28 10:56 |
|
|
withsiyu
新手上路

积分 2
发帖 1
注册 2007-5-10
状态 离线
|
|
2007-5-28 15:27 |
|
|
qjykll
新手上路

积分 8
发帖 4
注册 2007-6-9
状态 离线
|
|
2007-6-9 10:49 |
|
|
xuxinxiangxue
初级用户
 
积分 31
发帖 14
注册 2007-5-30 来自 福建福州
状态 离线
|
『第 75 楼』:
使用 LLM 解释/回答一下
好东西,受益匪浅啊,发现自己知道得太少啦!!顶。。。。。。。
Good stuff,受益匪浅啊,发现自己知道得太少啦!! Top......
|
|
2007-6-11 10:39 |
|