|
plp626
银牌会员
     钻石会员
积分 2278
发帖 1020
注册 2007-11-19
状态 离线
|
『第 31 楼』:
使用 LLM 解释/回答一下
一楼的“网志学习笔记里还有些东西”
There is still some stuff in the blog study notes on the first floor
|

山外有山,人外有人;低调做人,努力做事。
进入网盘(各种工具)~~ 空间~~cmd学习 |
|
2008-4-27 02:32 |
|
|
ktv98
初级用户
 
积分 112
发帖 81
注册 2008-4-11
状态 离线
|
|
2008-5-8 23:19 |
|
|
suchengyouxia
初级用户
 
积分 52
发帖 28
注册 2008-5-23
状态 离线
|
『第 33 楼』:
使用 LLM 解释/回答一下
收藏,这需要结合实际,不是看看就懂得。
Collect, this needs to be combined with reality, not just understand by looking at it.
|

您的回复是我发帖的动力 |
|
2008-6-19 22:48 |
|
|
wy630522
新手上路

积分 2
发帖 1
注册 2006-6-20
状态 离线
|
|
2008-6-20 14:01 |
|
|
wjmm
初级用户
 
积分 48
发帖 19
注册 2008-4-16
状态 离线
|
『第 35 楼』:
使用 LLM 解释/回答一下
好贴好贴好贴好贴好贴好贴好贴好贴好贴好贴好贴好贴好贴
Good post, good post, good post, good post, good post, good post, good post, good post, good post, good post, good post, good post, good post
|
|
2008-7-3 17:43 |
|
|
ft3658306
新手上路

积分 2
发帖 1
注册 2008-2-20
状态 离线
|
『第 36 楼』:
使用 LLM 解释/回答一下
学习了本人新手一个虽然不能全看懂但先顶起了
Newbie here, learned a bit though can't understand everything, so I'll just bump it first.
|
|
2008-7-3 21:47 |
|
|
whitegod
初级用户
 
积分 26
发帖 13
注册 2007-11-15 来自 江苏无锡
状态 离线
|
|
2008-7-11 12:38 |
|
|
smily
初级用户
 
积分 44
发帖 23
注册 2008-5-1
状态 离线
|
『第 38 楼』:
使用 LLM 解释/回答一下
怎么说呢!
看过之后才知道自己的无知!
Well, let's see. The original text is "怎么说呢!看过之后才知道自己的无知!". Translating it: "How should I put it!Only after reading did I realize my own ignorance!"
|
|
2008-7-11 16:41 |
|
|
sparklt
初级用户
 
积分 22
发帖 15
注册 2008-6-23
状态 离线
|
『第 39 楼』:
使用 LLM 解释/回答一下
15楼的第二code里面有一句不解:
set "p="&for /l %%a in (1 1 %1)do call set "p=%%p%%%~3"
哪位高手能解说一下后面的call set "p=%%p%%%~3" 有什么用?
In the line `set "p="&for /l %%a in (1 1 %1)do call set "p=%%p%%%~3"`, the `call set "p=%%p%%%~3"` part has the following function:
The `for /l` loop is iterating from 1 to the value of `%1`. For each iteration, it is using `call set` to concatenate the current value of `p` with the substring `%~3`. Specifically, `%~3` is taking the third command-line parameter (after removing any surrounding quotes), and in each iteration of the loop, it is appending that substring to the current value of `p`. So it's building up the string `p` by repeatedly appending the third parameter a number of times equal to the value of `%1`.
|

一起蹲坑 |
|
2008-7-16 03:45 |
|
|
sharpkingby
新手上路

积分 17
发帖 9
注册 2008-7-29
状态 离线
|
|
2008-7-29 21:23 |
|
|
luowei14
初级用户
 
积分 193
发帖 98
注册 2007-1-17
状态 离线
|
『第 41 楼』:
使用 LLM 解释/回答一下
....COPY 了半天.总算弄完了.楼主谢谢你的分享.学习了
....Copied for a long time. Finally finished. Thanks to the owner for sharing. Learned
|

这家伙很聪明 什么都没留下 |
|
2008-9-29 17:27 |
|
|
zhengqian529
初级用户
 
积分 100
发帖 93
注册 2009-1-14 来自 湖南
状态 离线
|
『第 42 楼』:
使用 LLM 解释/回答一下
Originally posted by sparklt at 2008-7-16 03:45:
15楼的第二code里面有一句不解:
set "p="&for /l %%a in (1 1 %1)do call set "p=%%p%%%~3"
哪位高手能解说一下后面的call set "p=%%p%%%~3" 有什么用?
可以分开来看:%%P%%(参考上面搂主关于延迟的示例程序)%~3(表示第三个参数,参数为%1~%9,%0为命令行本身)
不知道我的理解是否正确,请及时纠正
Originally posted by sparklt at 2008-7-16 03:45:
There is a sentence in the second code of building 15 that I don't understand:
set "p="&for /l %%a in (1 1 %1)do call set "p=%%p%%%~3"
Which expert can explain what the role of the following call set "p=%%p%%%~3" is?
It can be viewed separately: %%P%% (refer to the example program of the building owner above about delay) %~3 (represents the third parameter, the parameters are %1~%9, and %0 is the command line itself)
I don't know if my understanding is correct, please correct it in time
|
|
2009-2-2 19:38 |
|
|
82356722
新手上路

积分 3
发帖 2
注册 2009-3-12
状态 离线
|
『第 43 楼』:
使用 LLM 解释/回答一下
我喜欢这样的讲解,哈哈,一看就懂,只要识字的就能学会,哈哈。
I like this kind of explanation, haha. It's easy to understand at a glance, and anyone who can read can learn it, haha.
|
|
2009-3-13 11:55 |
|
|
bang6518
新手上路

积分 1
发帖 1
注册 2008-10-27
状态 离线
|
『第 44 楼』:
使用 LLM 解释/回答一下
不错的学习资料,学习了,本人新手,谢谢了!
Good learning materials, I've learned, I'm a novice, thank you!
|
|
2009-3-18 05:32 |
|
|
wangfangjian
中级用户
  
积分 274
发帖 192
注册 2009-1-7
状态 离线
|
|
2009-3-19 09:51 |
|