mv
Move or rename files.
mv [OPTION]... [-T] SOURCE DEST
mv [OPTION]... SOURCE... DIRECTORY
mv [OPTION]... -t DIRECTORY SOURCE...
Opions can be one of the following:
| Option | Description | 
|---|---|
-T  | 
 --no-target-directory. Treat DEST as a normal file.  | 
 
-i  | 
 --interactive . Prompt before overwrite.  | 
 
-u  | 
 --update . Move only when the SOURCE file is newer than the destination file or when the destination file is missing.  | 
 
-t  | 
 --target-directory=DIRECTORY . Move all SOURCE arguments into DIRECTORY.  | 
 
-f  | 
 --force . Do not prompt before overwriting.  |