如何在变量中存储键的值(对于Windows)

时间:2016-04-20 11:25:23

标签: windows batch-file key

我想在变量中存储key的值。我使用

在linux中解决了这样的问题
var1=`cat /path/to/file1.txt | grep -i "no3" | cut -d '=' -f2` 

现在我想在Windows机器中将键的值存储在变量中。

1 个答案:

答案 0 :(得分:0)

Same question。虽然您需要逃避一些特殊字符:

for /f "usebackq tokens=* delims=" %%# in (`cat /path/to/file1.txt ^| grep -i "no3" ^| cut -d '^=' -f2`) do (
  set "var1=%%#"
)