如何在windows命令行中读取环境变量中文件的内容?

时间:2015-07-10 14:29:23

标签: windows command-line

Windows命令中是否存在与bash中的以下命令相同的内容:

#grand {
  width: 900px;/*update this to whatever : 100% to any other value/units */
  overflow: hidden
}
#parent {
  width: 1000%;
}
.child {
  float: left;
  box-shadow: inset 0 0 0 1px;
  width: 2.5%;/* wich is here 25% of grand's width */
}
body {
  margin: 0;
}
ul {
  padding: 0;
  list-style-type: none;
}

我在网上找到了答案,但他们使用循环或复杂的方式......他们可能是一种简单的方法吗?

1 个答案:

答案 0 :(得分:2)

我使用以下命令,这对我有用

set /p myVar=<myFile.txt