大大大怪 当前离线
列兵
pd1 当前离线
五级士官
TOP
qixiaobin0715 当前离线
大校
hfxiang 当前离线
上尉
dir /b /ad ab-cd-01*复制代码
@echo off setlocal enabledelayedexpansion set n=0 for /f "tokens=4 delims=-" %%i in ('dir /b /ad ab-cd-01*') do ( set _%%i=true if %%i gtr !n! set n=%%i ) for /l %%j in (1,1,!n!) do if not defined _%%j echo,%%j pause复制代码
<# : @echo off powershell -NoProfile -ExecutionPolicy bypass "Get-Content -literal '%~f0' |Out-String|Invoke-Expression" pause #> $A=dir|%{$_.Name.Split("-")[-1]} $B=1..10 $C=$B | ?{-not ($A -contains $_)} [system.String]::Join('、', $C)复制代码