Skip to content

Commit

Permalink
Fix use of the move command in the Windows shell
Browse files Browse the repository at this point in the history
`move` work 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.
  • Loading branch information
TomasHubelbauer committed Apr 27, 2016
1 parent 80bff1e commit e6b9760
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 e6b9760

Please sign in to comment.