1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 01:04:59 +00:00
serenity/Base/usr/share/man/man1/mv.md
kleines Filmröllchen afaea38be2 Base: Expand "See Also" sections of many manpages
This commit focuses on the CLI utilities.
2023-07-06 10:03:48 +01:00

565 B

Name

mv - move (rename) files

Synopsis

$ 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)
  • -n, --no-clobber: Do not overwrite existing files
  • -v, --verbose: Display all moved files

Examples

$ mv bin /usr
$ mv *.cpp /usr/src
$ mv old.txt new.txt

See also