terse 当前离线
中将
@echo off&setlocal enabledelayedexpansionset "1.txt=1"set "2.log=1"set "%~nx0=1" for /f "delims=" %%i in ('dir /b /a-d') do ( set "str=%%i" if not defined !str! ( if "!str!" equ "!str:aabb=!" del "!str!" ))COPY
TOP
powershell -c "Remove-Item * -Exclude 1.txt,2.log,*aabb*, '%~nx0'"COPY