我有一个名为poll001.html的文件,需要创建100个以递增方式命名的副本(即poll002.html,poll003.html等).我知道这是愚蠢的,但这是老板男人想要的.对脚本,命令行或
python的任何建议?再次,抱歉这是一个荒谬的请求.
一些批次福.将“source-file.html”替换为源文件名.这也是你的领先零.将其保存为.BAT或.CMD,然后让我们翻录.
原文链接:https://www.f2er.com/windows/370093.html@echo off for /L %%i IN (1,1,100) do call :docopy %%i goto :EOF :docopy set FN=00%1 set FN=%FN:~-3% copy source-file.html poll%FN%.html
编辑:
在sysadmin1138的答案中解决一个不那么普遍的情况:
@echo off for /L %%i IN (1,9) do copy source-file.html poll00%%i.html for /L %%i IN (10,99) do copy source-file.html poll0%%i.html copy source-file.html poll100.html