mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-06 03:02:55 +00:00
27 lines
467 B
Markdown
27 lines
467 B
Markdown
## Name
|
|
|
|
mv - move (rename) files
|
|
|
|
## Synopsis
|
|
|
|
```**sh
|
|
$ mv [options...] <old name> <new name>
|
|
$ mv [options...] <source...> <destination>
|
|
```
|
|
|
|
## Description
|
|
|
|
`mv` renames file `old name` to `new name` or moves all `source` files into `destination`.
|
|
|
|
## Options
|
|
|
|
* `-f`, `--force`: Do not prompt before overwriting (not implemented for now)
|
|
* `-v`, `--verbose`: Display all moved files
|
|
|
|
## Examples
|
|
|
|
```sh
|
|
$ mv bin /usr
|
|
$ mv *.cpp /usr/src
|
|
$ mv old.txt new.txt
|
|
```
|