Rollup merge of #33234 - TomasHubelbauer:TomasHubelbauer-patch-1, r=GuillaumeGomez

Fix use of the `move` command in the Windows shell

`move` works both in `cmd` and in Powershell. `mv` works only in Powershell and the book says nothing about which shell is recommended so this could confuse beginners.

Closes #33219.
This commit is contained in:
Steve Klabnik 2016-04-28 09:51:44 -04:00
commit b9dd8aa4c2

View File

@ -412,7 +412,7 @@ enter the following commands:
```bash
$ mkdir src
$ mv main.rs src/main.rs
$ mv main.rs src/main.rs # or 'move main.rs src/main.rs' on Windows
$ rm main # or 'del main.exe' on Windows
```