CMD 命令wmic PageFile Get AllocatedBaseSize | findstr "[0-9]" 2>Nul
,输出为:
512
。
我使用For /F
循环来获取值。
for /f %a in ('wmic PageFile Get AllocatedBaseSize ^| findstr "[0-9]" 2^>Nul') do set "PF=%a"
输出:
set "PF=
512"
我只需要set "PF=512"
没有附加新行。
代码是什么?谢谢。