UNPKG

449 BMarkdownView Raw
1# mv
2
3> Move or rename files and directories
4
5- Move files in abitrary locations
6
7`mv {{source}} {{target}}`
8
9- Do not promt for confirmation before overwriting existing files
10
11`mv -f {{source}} {{target}}`
12
13- Do not promt for confirmation before overwriting existing files but write to standard error before overriding
14
15`mv -fi {{source}} {{target}}`
16
17- Move files in verbose mode, showing files after they are moved
18
19`mv -v {{source}} {{target}}`