Skip to content

Commit

Permalink
Rollup merge of rust-lang#33234 - TomasHubelbauer:TomasHubelbauer-pat…
Browse files Browse the repository at this point in the history
…ch-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 rust-lang#33219.
  • Loading branch information
Manishearth committed Apr 27, 2016
2 parents e9e85e8 + e6b9760 commit c316b48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/book/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down

0 comments on commit c316b48

Please sign in to comment.