|
zqdarkday
中级用户
  
积分 210
发帖 79
注册 2007-4-14 来自 湖北
状态 离线
|
『第 31 楼』:
使用 LLM 解释/回答一下
cd\
md a
cd a
for /l %%a in (1,1,100) do @md %%a
这样就可以了
我试过了
cd\
md a
cd a
for /l %%a in (1,1,100) do @md %%a
That's it
I tried it
|
|
2007-5-5 11:36 |
|
|
haiou327
高级用户
    DOS时空
积分 713
发帖 348
注册 2007-2-10
状态 离线
|
『第 32 楼』:
使用 LLM 解释/回答一下
Originally posted by chenhui530 at 2005-3-10 12:00 AM:
md 666
cd 666
for /l %%a in (1,1,100) do md %%a
这里的/l 是什么意思
In the for /l loop, "/l" stands for "loop". It is used to create a numeric sequence - controlled loop. The syntax "for /l %%a in (start, step, end)" is used to iterate from the start number, with the specified step, up to the end number. In the given code, "for /l %%a in (1,1,100) do md %%a" will create 100 directories named from 1 to 100.
|
|
2007-5-12 18:31 |
|
|
wudixin96
银牌会员
    
积分 1928
发帖 931
注册 2007-1-6
状态 离线
|
『第 33 楼』:
使用 LLM 解释/回答一下
Originally posted by haiou327 at 2007-5-12 06:31 PM:
这里的/l 是什么意思
for /?
Originally posted by haiou327 at 2007-5-12 06:31 PM:
What does /l mean here?
for /?
|
|
2007-5-12 18:46 |
|
|
superhacker
初级用户
 
积分 66
发帖 32
注册 2007-1-15
状态 离线
|
『第 34 楼』:
使用 LLM 解释/回答一下
有个最简单的方法,打开excle,在里面输入md 1,拖动直至100,复制,建个文本文件,粘贴进去,改扩展名为bat,运行就可以了
There is a simplest method. Open Excel, input "md 1" in it, drag until 100, copy, create a text file, paste it in, change the extension to bat, and then run it.
|
|
2007-6-21 17:29 |
|
|
zzghost
初级用户
 
积分 43
发帖 14
注册 2006-12-21
状态 离线
|
『第 35 楼』:
使用 LLM 解释/回答一下
34楼的太有创诣了, 体现混合编程的思想哈
The idea on floor 34 is very creative, reflecting the thought of mixed programming.
|
|
2007-6-22 00:09 |
|