标题: [求助]如何将数字“1“写入"2.txt"将数字"2"写入"3.txt"依此类推
[打印本页]
作者: wolfkin
时间: 2004-12-6 00:00
标题: [求助]如何将数字“1“写入"2.txt"将数字"2"写入"3.txt"依此类推
利用for可以实现将一数字写入以此数字为文件名的文件里
例:FOR /L %%s IN (1,1,9) DO echo %%s>>%%s.abc
现在我想实现的是如何在批处理里将一数字写入以这个数字+1为文件名的文件里
请大家给与帮助
作者: Climbing
时间: 2004-12-7 00:00
@echo off
echo @echo off > temp.bat
echo set /a num=%%1 + 1 >> temp.bat
echo echo %%1 ^> %%num%%.txt >> temp.bat
echo set num= >> temp.bat
for /L %%s in (1,1,9) do call temp.bat %%s
del temp.bat
作者: wolfkin
时间: 2004-12-12 00:00
请教Climbingecho echo %%1 ^> %%num%%.txt >> temp.bat
这行中 ^ 的作用是什么?谢谢
作者: Climbing
时间: 2004-12-13 00:00
查以前的老帖子或者自己试一下不就知道了嘛
作者: iyou
时间: 2008-11-27 09:50
setlocal EnableDelayedExpansion
set n=0
for /l %%a in (1,1,100) do (set /a n+=1 & set /a m=n+1 & echo !n!>>d:\11\!m!.txt)
pause