update cmd format
This commit is contained in:
parent
71dad1d7a4
commit
ce33b3d114
|
@ -9,7 +9,7 @@ description: |-
|
|||
|
||||
# Destroy
|
||||
|
||||
**Command: `vagrant destroy`**
|
||||
**Command: `vagrant destroy [name|id]`**
|
||||
|
||||
This command stops the running machine Vagrant is managing and
|
||||
destroys all resources that were created during the machine creation process.
|
||||
|
|
|
@ -9,7 +9,7 @@ description: |-
|
|||
|
||||
# Halt
|
||||
|
||||
**Command: `vagrant halt`**
|
||||
**Command: `vagrant halt [name|id]`**
|
||||
|
||||
This command shuts down the running machine Vagrant is managing.
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ description: |-
|
|||
|
||||
# Package
|
||||
|
||||
**Command: `vagrant package`**
|
||||
**Command: `vagrant package [name|id]`**
|
||||
|
||||
This packages a currently running _VirtualBox_ environment into a
|
||||
re-usable [box](/docs/boxes.html). This command can only be used with
|
||||
|
|
|
@ -9,7 +9,7 @@ description: |-
|
|||
|
||||
# Port
|
||||
|
||||
**Command: `vagrant port`**
|
||||
**Command: `vagrant port [name|id]`**
|
||||
|
||||
The port command displays the full list of guest ports mapped to the host
|
||||
machine ports:
|
||||
|
|
|
@ -9,7 +9,7 @@ description: |-
|
|||
|
||||
# Provision
|
||||
|
||||
**Command: `vagrant provision`**
|
||||
**Command: `vagrant provision [vm-name]`**
|
||||
|
||||
Runs any configured [provisioners](/docs/provisioning/)
|
||||
against the running Vagrant managed machine.
|
||||
|
|
|
@ -9,7 +9,7 @@ description: |-
|
|||
|
||||
# Reload
|
||||
|
||||
**Command: `vagrant reload`**
|
||||
**Command: `vagrant reload [name|id]`**
|
||||
|
||||
The equivalent of running a [halt](/docs/cli/halt.html) followed by an
|
||||
[up](/docs/cli/up.html).
|
||||
|
|
|
@ -10,7 +10,7 @@ description: |-
|
|||
|
||||
# Resume
|
||||
|
||||
**Command: `vagrant resume`**
|
||||
**Command: `vagrant resume [name|id]`**
|
||||
|
||||
This resumes a Vagrant managed machine that was previously suspended,
|
||||
perhaps with the [suspend command](/docs/cli/suspend.html).
|
||||
|
|
|
@ -9,7 +9,7 @@ description: |-
|
|||
|
||||
# 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.
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ description: |-
|
|||
|
||||
# SSH Config
|
||||
|
||||
**Command: `vagrant ssh-config`**
|
||||
**Command: `vagrant ssh-config [name|id]`**
|
||||
|
||||
This will output valid configuration for an SSH config file to SSH
|
||||
into the running Vagrant machine from `ssh` directly (instead of
|
||||
|
|
|
@ -9,7 +9,7 @@ description: |-
|
|||
|
||||
# Status
|
||||
|
||||
**Command: `vagrant status`**
|
||||
**Command: `vagrant status [name|id]`**
|
||||
|
||||
This will tell you the state of the machines Vagrant is managing.
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ description: |-
|
|||
|
||||
# Suspend
|
||||
|
||||
**Command: `vagrant suspend`**
|
||||
**Command: `vagrant suspend [name|id]`**
|
||||
|
||||
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).
|
||||
|
|
|
@ -9,7 +9,7 @@ description: |-
|
|||
|
||||
# Up
|
||||
|
||||
**Command: `vagrant up`**
|
||||
**Command: `vagrant up [name|id]`**
|
||||
|
||||
This command creates and configures guest machines according to your
|
||||
[Vagrantfile](/docs/vagrantfile/).
|
||||
|
|
Loading…
Reference in New Issue