gpt4 book ai didi

windows - 需要有关 Windows 批处理脚本的帮助

转载 作者:可可西里 更新时间:2023-11-01 11:38:31 25 4
gpt4 key购买 nike

我有一百个文本文件,我想在每个文件的末尾插入数字 1100。下面的脚本会将“此处的一些文本”添加到保存和执行 bat 脚本的目录中的每个文件。

FOR %%i IN (*.txt) DO echo some text here>> %%i

现在,我想将数字 1-100 插入到上述 100 个文本文件中,而不是“这里有一些文本”。

实现此目的的正确脚本是什么?

最佳答案

如果您查看 for/?

FOR /L %variable IN (start,step,end) DO command [command-parameters]

The set is a sequence of numbers from start to end, by step amount.
So (1,1,5) would generate the sequence 1 2 3 4 5 and (5,-1,1) would
generate the sequence (5 4 3 2 1)

关于windows - 需要有关 Windows 批处理脚本的帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5467447/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com