FOR /F "delims=" %%A IN ('
jq -r ".fields.field_10101" "C:\files\storage.json"
') DO SET "new=%%A"
票数 1
EN
Stack Overflow用户
发布于
2022-09-08 21:40:03
set LOC=C:\files\storage.json
for /f delims^=^"^ tokens^=3 %%A in ('findstr /R "field_10101" %LOC%') do set new=%%A
call :getvalue %new%
echo %value%
goto exit