使用带有文本的 CMD 创建 10000 个文本文件

发布于 2024-12-02 19:31:40 字数 409 浏览 1 评论 0原文

使用 DOS 创建 10000 个带有文本的文本文件

,因此文件名将是 1.txt,其内部将是“numeric1.txt”

,下一个文本文件将是 2.txt,其内部将是“numeric2.txt” ...

下一个文本文件将是 10.txt ,其内部将是 "numeric10.txt"

。 。 。 。 直到最后一个文本文件为 10000.txt,其内部为“numeric10000.txt”,

您能帮我吗?

问候


此问题的

更新我如何让它写入所有这些行(具有与上面相同数量的文件和文件名)

@echo

cd..

cd..

cd /folder

text -u text -w numeric1.txt

Create 10000 text file with DOS with text

so filename will be 1.txt and inside of it will be "numeric1.txt"

and the next text file will be 2.txt and inside of it will be "numeric2.txt"
...

and the next text file will be 10.txt and inside of it will be "numeric10.txt"

.
.
.
.
until the last text file will be 10000.txt and inside of it will be "numeric10000.txt"

Can you please help me with that ?

Regards


Update for this question

How I can make it write all this lines (with same number of files and file name like above)

@echo

cd..

cd..

cd /folder

text -u text -w numeric1.txt

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

凉月流沐 2024-12-09 19:31:40
FOR /L %A IN (1,1,10000) DO echo numeric%A.txt>%A.txt
FOR /L %A IN (1,1,10000) DO echo numeric%A.txt>%A.txt
固执像三岁 2024-12-09 19:31:40
@echo OFF
FOR /L %%G IN (1,1,10000) DO echo numeric%%G.txt > %%G.txt
@echo OFF
FOR /L %%G IN (1,1,10000) DO echo numeric%%G.txt > %%G.txt
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文