zhonglumthgh 当前离线
列兵
yhcfsr 当前离线
中尉
TOP
/zhqsystem/zhq 当前离线
@echo off md "%temp%\temptemp" for /f "delims=" %%i in ('dir/a-d/s /b ".\*.txt"') do ( (for /f %%j in ('type "%%~fi"')do ( for /f "delims=-" %%k in ("%%j")do if /i "%%j"=="%%k" ( echo,-%%k )else ( echo,%%k ) ) )>"%temp%\temptemp\%%~nxi" xcopy/y "%temp%\temptemp\%%~nxi" "%%~dpi"&&del/q "%temp%\temptemp\%%~nxi" ) rd "%temp%\temptemp" pause 复制代码
评分人数
@echo off set "SourDir=E:\DCOPY\test" cd /d "%SourDir%" echo 正在处理…… for /f "delims=" %%a in ('dir /a-d /s /b *.txt') do ( for /f "delims=" %%i in ('findstr /n ".*" "%%a"') do ( set "var=%%i" setlocal enabledelayedexpansion set var=!var:*:=! echo !var!|findstr /b "^-">nul&&set "var=!var:-=!"||if not "!var!"=="" set "var=-!var!" (echo.!var!)>>"%%a.log" endlocal ) move /y "%%a.log" "%%~nxa">nul ) pause&exit复制代码