我有一个如下所示的Dockerfile:
e = ActiveSheet.TextBox1.Object.Value
For x = 12 To 12 + (e - 1)
For j = 2 To 2 + e - 1
Cells(x, 2).Value = Cells(x, 2).Value & Worksheets("equip list").Cells(j, 4).Value
Next j
Next x
我想通过'是'响应所有必需的'是/否'安装npm时的参数。 有没有办法做到这一点?
答案 0 :(得分:3)
我使用以下内容安装了Angular,而没有使用情况统计信息共享。
RUN echo n | npm install -g --silent @angular/cli
我认为echo y
应该为您服务
答案 1 :(得分:1)
在linux中有专门用于此的class Outer { <-- Enclosing class
private int age; <-- Enclosing variable
private int name; <-- Enclosing variable
class Inner {
}
}
命令:
yes
第一行向第一个npm install命令输出“y”列表。 RUN yes | npm install something && \
npm install something && \
yes yes | npm install something
命令还可以选择输出的内容。因此,如果您需要每行输出“是”而不是单个“y”字符,那么您可以运行yes
,如第三个示例所示。