在流浪手册中我see:
...您可能拥有领导者计算机以及
follower0
,follower1
,follower2
等。如果您想提出所有关注者但不是领导者,您 可以做vagrant up /follower[0-9]/
。如果Vagrant看到机器名称 在正斜杠中,它假设您正在使用常规 表达
我尝试在我的Windows机器上运行以下命令(在git bash窗口中)并且失败(我的机器名称为node1
和node2
):
$ vagrant.exe up /node[1-2]/
The machine with the name '/node[1-2]/' was not found configured for
this Vagrant environment.
我尝试使用斜线进行转义,但它不起作用:
vagrant.exe up //node[1-2]//
vagrant.exe up \/node[1-2]\/
vagrant.exe up \\node[1-2]\\
请问任何想法?