我想在变量中存储key的值。我使用
在linux中解决了这样的问题var1=`cat /path/to/file1.txt | grep -i "no3" | cut -d '=' -f2`
现在我想在Windows机器中将键的值存储在变量中。
答案 0 :(得分:0)
Same question。虽然您需要逃避一些特殊字符:
for /f "usebackq tokens=* delims=" %%# in (`cat /path/to/file1.txt ^| grep -i "no3" ^| cut -d '^=' -f2`) do (
set "var1=%%#"
)