mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 09:47:34 +00:00
Base: Add more manpages for command-line utilities
This commit is contained in:
parent
5d8585df97
commit
57340dda36
25 changed files with 749 additions and 0 deletions
27
Base/usr/share/man/man1/mv.md
Normal file
27
Base/usr/share/man/man1/mv.md
Normal file
|
@ -0,0 +1,27 @@
|
|||
## 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
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue