ysrr2011 当前离线
上等兵
评分人数
CrLf 当前离线
论坛巡查
@echo off cd /d c:\文件夹1 for /f "delims=" %%a in ('dir /b /a-d *.txt') do call :处理 "%%a">"文件夹2\%%~na0-3%%~xa" pause&exit :处理 setlocal for /f "delims=" %%a in (%~snx1) do set /a #%%a#+=1 for /f "delims=#" %%a in ('set #^|findstr "=[0-3]$"') do echo %%a复制代码
TOP
weichenxiehou 当前离线
上尉
apang 当前离线
上将
foreach($file in (get-childitem *.txt)){ get-content $file|group-object|where-object{$_.count -ge 8 -or $_.count -le 11}|select-object name >($file.name + '8_11' + $file.extension) }复制代码