update cmd format

This commit is contained in:
Kammy 2016-04-12 20:45:10 +09:00 committed by Seth Vargo
parent 71dad1d7a4
commit ce33b3d114
No known key found for this signature in database
GPG Key ID: 905A90C2949E8787
12 changed files with 12 additions and 12 deletions

View File

@ -9,7 +9,7 @@ description: |-
# Destroy # Destroy
**Command: `vagrant destroy`** **Command: `vagrant destroy [name|id]`**
This command stops the running machine Vagrant is managing and This command stops the running machine Vagrant is managing and
destroys all resources that were created during the machine creation process. destroys all resources that were created during the machine creation process.

View File

@ -9,7 +9,7 @@ description: |-
# Halt # Halt
**Command: `vagrant halt`** **Command: `vagrant halt [name|id]`**
This command shuts down the running machine Vagrant is managing. This command shuts down the running machine Vagrant is managing.

View File

@ -9,7 +9,7 @@ description: |-
# Package # Package
**Command: `vagrant package`** **Command: `vagrant package [name|id]`**
This packages a currently running _VirtualBox_ environment into a This packages a currently running _VirtualBox_ environment into a
re-usable [box](/docs/boxes.html). This command can only be used with re-usable [box](/docs/boxes.html). This command can only be used with

View File

@ -9,7 +9,7 @@ description: |-
# Port # Port
**Command: `vagrant port`** **Command: `vagrant port [name|id]`**
The port command displays the full list of guest ports mapped to the host The port command displays the full list of guest ports mapped to the host
machine ports: machine ports:

View File

@ -9,7 +9,7 @@ description: |-
# Provision # Provision
**Command: `vagrant provision`** **Command: `vagrant provision [vm-name]`**
Runs any configured [provisioners](/docs/provisioning/) Runs any configured [provisioners](/docs/provisioning/)
against the running Vagrant managed machine. against the running Vagrant managed machine.

View File

@ -9,7 +9,7 @@ description: |-
# Reload # Reload
**Command: `vagrant reload`** **Command: `vagrant reload [name|id]`**
The equivalent of running a [halt](/docs/cli/halt.html) followed by an The equivalent of running a [halt](/docs/cli/halt.html) followed by an
[up](/docs/cli/up.html). [up](/docs/cli/up.html).

View File

@ -10,7 +10,7 @@ description: |-
# Resume # Resume
**Command: `vagrant resume`** **Command: `vagrant resume [name|id]`**
This resumes a Vagrant managed machine that was previously suspended, This resumes a Vagrant managed machine that was previously suspended,
perhaps with the [suspend command](/docs/cli/suspend.html). perhaps with the [suspend command](/docs/cli/suspend.html).

View File

@ -9,7 +9,7 @@ description: |-
# SSH # SSH
**Command: `vagrant ssh`** **Command: `vagrant ssh [name|id] [-- extra_ssh_args]`**
This will SSH into a running Vagrant machine and give you access to a shell. This will SSH into a running Vagrant machine and give you access to a shell.

View File

@ -9,7 +9,7 @@ description: |-
# SSH Config # SSH Config
**Command: `vagrant ssh-config`** **Command: `vagrant ssh-config [name|id]`**
This will output valid configuration for an SSH config file to SSH This will output valid configuration for an SSH config file to SSH
into the running Vagrant machine from `ssh` directly (instead of into the running Vagrant machine from `ssh` directly (instead of

View File

@ -9,7 +9,7 @@ description: |-
# Status # Status
**Command: `vagrant status`** **Command: `vagrant status [name|id]`**
This will tell you the state of the machines Vagrant is managing. This will tell you the state of the machines Vagrant is managing.

View File

@ -9,7 +9,7 @@ description: |-
# Suspend # Suspend
**Command: `vagrant suspend`** **Command: `vagrant suspend [name|id]`**
This suspends the guest machine Vagrant is managing, rather than fully This suspends the guest machine Vagrant is managing, rather than fully
[shutting it down](/docs/cli/halt.html) or [destroying it](/docs/cli/destroy.html). [shutting it down](/docs/cli/halt.html) or [destroying it](/docs/cli/destroy.html).

View File

@ -9,7 +9,7 @@ description: |-
# Up # Up
**Command: `vagrant up`** **Command: `vagrant up [name|id]`**
This command creates and configures guest machines according to your This command creates and configures guest machines according to your
[Vagrantfile](/docs/vagrantfile/). [Vagrantfile](/docs/vagrantfile/).