此部分脚本未设置变量creationYear
的值。
set creationYear=dir/T:C %%i | cut -c 7-10
echo %creationYear%
显示ECHO已关闭,开始时有@ECHO OFF
。
答案 0 :(得分:0)
for /f "tokens=* delims=" %%# in ('dir/T:C %%i ^| cut -c 7-10') do (
set "creationYear=%%#"
)
echo %creationYear%
尽管您可以在没有cut