2022-02-14 03:22:51 +01:00
|
|
|
---
|
|
|
|
title: mv
|
|
|
|
layout: command
|
|
|
|
version: 0.59.0
|
|
|
|
---
|
2021-05-30 02:57:04 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
Move files or directories.
|
2021-05-30 02:57:04 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
## Signature
|
2021-05-30 02:57:04 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
```> mv (source) (destination)```
|
2021-05-30 02:57:04 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
## Parameters
|
2021-05-30 02:57:04 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
- `source`: the location to move files/directories from
|
|
|
|
- `destination`: the location to move files/directories to
|
2021-05-30 02:57:04 +02:00
|
|
|
|
2022-02-20 02:13:33 +01:00
|
|
|
## Examples
|
|
|
|
|
|
|
|
Rename a file
|
|
|
|
```shell
|
|
|
|
> mv before.txt after.txt
|
|
|
|
```
|
|
|
|
|
|
|
|
Move a file into a directory
|
|
|
|
```shell
|
|
|
|
> mv test.txt my/subdirectory
|
|
|
|
```
|
|
|
|
|
|
|
|
Move many files into a directory
|
|
|
|
```shell
|
|
|
|
> mv *.txt my/subdirectory
|
|
|
|
```
|