mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-31 12:41:53 +00:00
19 lines
542 B
Plaintext
19 lines
542 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, windows]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# mv
|
|
|
|
> In PowerShell, this command is an alias of `Move-Item`.
|
|
> However, this command is not available on the Command Prompt (`cmd`). Use `move` instead for similar functionality.
|
|
> More information: <https://learn.microsoft.com/powershell/module/microsoft.powershell.management/move-item>.
|
|
|
|
- View documentation for the equivalent Command Prompt command:
|
|
|
|
`tldr move`
|
|
|
|
- View documentation for the original PowerShell command:
|
|
|
|
`tldr move-item`
|