使用正则表达式来移动多台机器

时间:2016-06-07 08:39:40

标签: vagrant git-bash

在流浪手册中我see

  

...您可能拥有领导者计算机以及follower0follower1follower2等。如果您想提出所有关注者但不是领导者,您   可以做vagrant up /follower[0-9]/。如果Vagrant看到机器名称   在正斜杠中,它假设您正在使用常规   表达

我尝试在我的Windows机器上运行以下命令(在git bash窗口中)并且失败(我的机器名称为node1node2):

$ 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]\\

请问任何想法?

1 个答案:

答案 0 :(得分:2)

有一个known issue,修复程序将包含在1.8.2。

如果你想自己建造流浪汉,它已经包含在核心中