Merge pull request #8143 from danielmenezesbr/danielmenezesbr-patch-doc-vagrant
Debug Documentation - &> is not valid on Windows
This commit is contained in:
commit
5b3ecda5ba
|
@ -58,9 +58,14 @@ option. For example:
|
|||
$ vagrant up --debug
|
||||
```
|
||||
|
||||
If you are saving the output to a file, you may need to redirect stderr and
|
||||
On Linux and Mac, if you are saving the output to a file, you may need to redirect stderr and
|
||||
stdout using `&>`:
|
||||
|
||||
```
|
||||
$ vagrant up --debug &> vagrant.log
|
||||
```
|
||||
|
||||
On Windows:
|
||||
```
|
||||
$ vagrant up --debug > vagrant.log 2>&1
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue