seichinaren 当前离线
列兵
TOP
WHY 当前离线
上校
PowerShell -c "dir *_*.txt | Group {($_.Name -Split '_')[0]} | ?{$_.Count-1} | del -Path {$_.Group[0..($_.Count-2)]}"复制代码
pcl_test 当前离线
荣誉版主
help|findstr /i "del echo"&pause复制代码
echo,看到什么?&>nul ping -n 3 0&echo /?&pause复制代码
xxpinqz (YiFeng)当前离线
中校
@echo off for /f "tokens=1* delims=_" %%a in ('dir /b *_*.txt') do if defined #%%a (echo,del %%a_%%b) else set #%%a=. pause复制代码