Merge pull request #8143 from danielmenezesbr/danielmenezesbr-patch-doc-vagrant

Debug Documentation - &> is not valid on Windows
This commit is contained in:
Chris Roberts 2017-01-05 15:10:33 -08:00 committed by GitHub
commit 5b3ecda5ba
1 changed files with 6 additions and 1 deletions

View File

@ -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
```