mv命令是move的縮寫,可以用來移動檔案或者將檔案改名(move (rename) files),是Linux系統下常用的命令,經常用來備份檔案或者目錄。
1.命令格式:
mv [選項] 原始檔或目錄 目標檔案或目錄
2.命令功能:
視mv命令中第二個引數型別的不同(是目標檔案還是目標目錄),mv命令將檔案重新命名或將其移至一個新的目錄中。當第二個引數型別是檔案時,mv命令完成檔案重新命名,此時,原始檔只能有一個(也可以是源目錄名),它將所給的原始檔或目錄重新命名為給定的目標檔名。當第二個引數是已存在的目錄名稱時,原始檔或目錄引數可以有多個,mv命令將各引數指定的原始檔均移至目標目錄中。在跨檔案系統移動檔案時,mv先拷貝,再將原有檔案刪除,而鏈至該檔案的連結也將丟失。
3.命令引數:
-b :若需覆蓋檔案,則覆蓋前先行備份。
-f :force 強制的意思,如果目標檔案已經存在,不會詢問而直接覆蓋;
-i :若目標檔案 (destination) 已經存在時,就會詢問是否覆蓋!
-u :若目標檔案已經存在,且 source 比較新,才會更新(update)
-t : –target-directory=DIRECTORY move all SOURCE arguments into DIRECTORY,即指定mv的目標目錄,該選項適用於移動多個原始檔到一個目錄的情況,此時目標目錄在前,原始檔在後。
4.命令例項:
例項一:檔案改名
命令:
1 |
mv test.log test1.txt |
輸出:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
[root@localhost test]# ll 總計 20drwxr-xr-x 6 root root 4096 10-27 01:58 scf drwxrwxrwx 2 root root 4096 10-25 17:46 test3 drwxr-xr-x 2 root root 4096 10-25 17:56 test4 drwxr-xr-x 3 root root 4096 10-25 17:56 test5 -rw-r--r-- 1 root root 16 10-28 06:04 test.log [root@localhost test]# mv test.log test1.txt [root@localhost test]# ll 總計 20drwxr-xr-x 6 root root 4096 10-27 01:58 scf -rw-r--r-- 1 root root 16 10-28 06:04 test1.txt drwxrwxrwx 2 root root 4096 10-25 17:46 test3 drwxr-xr-x 2 root root 4096 10-25 17:56 test4 drwxr-xr-x 3 root root 4096 10-25 17:56 test5 |
說明:
將檔案test.log重新命名為test1.txt
例項二:移動檔案
命令:
1 |
mv test1.txt test3 |
輸出:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
[root@localhost test]# ll 總計 20drwxr-xr-x 6 root root 4096 10-27 01:58 scf -rw-r--r-- 1 root root 29 10-28 06:05 test1.txt drwxrwxrwx 2 root root 4096 10-25 17:46 test3 drwxr-xr-x 2 root root 4096 10-25 17:56 test4 drwxr-xr-x 3 root root 4096 10-25 17:56 test5 [root@localhost test]# mv test1.txt test3 [root@localhost test]# ll 總計 16drwxr-xr-x 6 root root 4096 10-27 01:58 scf drwxrwxrwx 2 root root 4096 10-28 06:09 test3 drwxr-xr-x 2 root root 4096 10-25 17:56 test4 drwxr-xr-x 3 root root 4096 10-25 17:56 test5 [root@localhost test]# cd test3 [root@localhost test3]# ll 總計 4 -rw-r--r-- 1 root root 29 10-28 06:05 test1.txt [root@localhost test3]# |
說明:
將test1.txt檔案移到目錄test3中
例項三:將檔案log1.txt,log2.txt,log3.txt移動到目錄test3中。
命令:
1 2 |
mv log1.txt log2.txt log3.txt test3 mv -t /opt/soft/test/test4/ log1.txt log2.txt log3.txt |
輸出:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
[root@localhost test]# ll 總計 28 -rw-r--r-- 1 root root 8 10-28 06:15 log1.txt -rw-r--r-- 1 root root 12 10-28 06:15 log2.txt -rw-r--r-- 1 root root 13 10-28 06:16 log3.txt drwxrwxrwx 2 root root 4096 10-28 06:09 test3 [root@localhost test]# mv log1.txt log2.txt log3.txt test3 [root@localhost test]# ll 總計 16drwxrwxrwx 2 root root 4096 10-28 06:18 test3 [root@localhost test]# cd test3/ [root@localhost test3]# ll 總計 16 -rw-r--r-- 1 root root 8 10-28 06:15 log1.txt -rw-r--r-- 1 root root 12 10-28 06:15 log2.txt -rw-r--r-- 1 root root 13 10-28 06:16 log3.txt -rw-r--r-- 1 root root 29 10-28 06:05 test1.txt [root@localhost test3]# [root@localhost test3]# ll 總計 20 -rw-r--r-- 1 root root 8 10-28 06:15 log1.txt -rw-r--r-- 1 root root 12 10-28 06:15 log2.txt -rw-r--r-- 1 root root 13 10-28 06:16 log3.txt drwxr-xr-x 2 root root 4096 10-28 06:21 logs -rw-r--r-- 1 root root 29 10-28 06:05 test1.txt [root@localhost test3]# mv -t /opt/soft/test/test4/ log1.txt log2.txt log3.txt [root@localhost test3]# cd .. [root@localhost test]# cd test4/ [root@localhost test4]# ll 總計 12 -rw-r--r-- 1 root root 8 10-28 06:15 log1.txt -rw-r--r-- 1 root root 12 10-28 06:15 log2.txt -rw-r--r-- 1 root root 13 10-28 06:16 log3.txt [root@localhost test4]# |
說明:
mv log1.txt log2.txt log3.txt test3 命令將log1.txt ,log2.txt, log3.txt 三個檔案移到 test3目錄中去,mv -t /opt/soft/test/test4/ log1.txt log2.txt log3.txt 命令又將三個檔案移動到test4目錄中去
例項四:將檔案file1改名為file2,如果file2已經存在,則詢問是否覆蓋
命令:
1 |
mv -i log1.txt log2.txt |
輸出:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
[root@localhost test4]# ll 總計 12 -rw-r--r-- 1 root root 8 10-28 06:15 log1.txt -rw-r--r-- 1 root root 12 10-28 06:15 log2.txt -rw-r--r-- 1 root root 13 10-28 06:16 log3.txt [root@localhost test4]# cat log1.txt odfdfs [root@localhost test4]# cat log2.txt ererwerwer [root@localhost test4]# mv -i log1.txt log2.txt mv:是否覆蓋“log2.txt”? y [root@localhost test4]# cat log2.txt odfdfs [root@localhost test4]# |
例項五:將檔案file1改名為file2,即使file2存在,也是直接覆蓋掉。
命令:
1 |
mv -f log3.txt log2.txt |
輸出:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
[root@localhost test4]# ll 總計 8 -rw-r--r-- 1 root root 8 10-28 06:15 log2.txt -rw-r--r-- 1 root root 13 10-28 06:16 log3.txt [root@localhost test4]# cat log2.txt odfdfs [root@localhost test4]# cat log3 cat: log3: 沒有那個檔案或目錄 [root@localhost test4]# ll 總計 8 -rw-r--r-- 1 root root 8 10-28 06:15 log2.txt -rw-r--r-- 1 root root 13 10-28 06:16 log3.txt [root@localhost test4]# cat log2.txt odfdfs [root@localhost test4]# cat log3.txt dfosdfsdfdss [root@localhost test4]# mv -f log3.txt log2.txt [root@localhost test4]# cat log2.txt dfosdfsdfdss [root@localhost test4]# ll 總計 4 -rw-r--r-- 1 root root 13 10-28 06:16 log2.txt [root@localhost test4]# |
說明:
log3.txt的內容直接覆蓋了log2.txt內容,-f 這是個危險的選項,使用的時候一定要保持頭腦清晰,一般情況下最好不用加上它。
例項六:目錄的移動
命令:
1 |
mv dir1 dir2 |
輸出:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
[root@localhost test4]# ll -rw-r--r-- 1 root root 13 10-28 06:16 log2.txt [root@localhost test4]# ll -rw-r--r-- 1 root root 13 10-28 06:16 log2.txt [root@localhost test4]# cd .. [root@localhost test]# ll drwxr-xr-x 6 root root 4096 10-27 01:58 scf drwxrwxrwx 3 root root 4096 10-28 06:24 test3 drwxr-xr-x 2 root root 4096 10-28 06:48 test4 drwxr-xr-x 3 root root 4096 10-25 17:56 test5 [root@localhost test]# cd test3 [root@localhost test3]# ll drwxr-xr-x 2 root root 4096 10-28 06:21 logs -rw-r--r-- 1 root root 29 10-28 06:05 test1.txt [root@localhost test3]# cd .. [root@localhost test]# mv test4 test3 [root@localhost test]# ll drwxr-xr-x 6 root root 4096 10-27 01:58 scf drwxrwxrwx 4 root root 4096 10-28 06:54 test3 drwxr-xr-x 3 root root 4096 10-25 17:56 test5 [root@localhost test]# cd test3/ [root@localhost test3]# ll drwxr-xr-x 2 root root 4096 10-28 06:21 logs -rw-r--r-- 1 root root 29 10-28 06:05 test1.txt drwxr-xr-x 2 root root 4096 10-28 06:48 test4 [root@localhost test3]# |
說明:
如果目錄dir2不存在,將目錄dir1改名為dir2;否則,將dir1移動到dir2中。
例項7:移動當前資料夾下的所有檔案到上一級目錄
命令:
1 |
mv * ../ |
輸出:
1 2 3 4 5 6 7 8 9 10 11 12 |
[root@localhost test4]# ll -rw-r--r-- 1 root root 25 10-28 07:02 log1.txt -rw-r--r-- 1 root root 13 10-28 06:16 log2.txt [root@localhost test4]# mv * ../ [root@localhost test4]# ll [root@localhost test4]# cd .. [root@localhost test3]# ll -rw-r--r-- 1 root root 25 10-28 07:02 log1.txt -rw-r--r-- 1 root root 13 10-28 06:16 log2.txt drwxr-xr-x 2 root root 4096 10-28 06:21 logs -rw-r--r-- 1 root root 29 10-28 06:05 test1.txt drwxr-xr-x 2 root root 4096 10-28 07:02 test4 |
例項八:把當前目錄的一個子目錄裡的檔案移動到另一個子目錄裡
命令:
1 |
mv test3/*.txt test5 |
輸出:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
[root@localhost test]# ll drwxr-xr-x 6 root root 4096 10-27 01:58 scf drwxrwxrwx 4 root root 4096 10-28 07:02 test3 drwxr-xr-x 3 root root 4096 10-25 17:56 test5 [root@localhost test]# cd test3 [root@localhost test3]# ll -rw-r--r-- 1 root root 25 10-28 07:02 log1.txt -rw-r--r-- 1 root root 13 10-28 06:16 log2.txt drwxr-xr-x 2 root root 4096 10-28 06:21 logs -rw-r--r-- 1 root root 29 10-28 06:05 test1.txt drwxr-xr-x 2 root root 4096 10-28 07:02 test4 [root@localhost test3]# cd .. [root@localhost test]# mv test3/*.txt test5 [root@localhost test]# cd test5 [root@localhost test5]# ll -rw-r--r-- 1 root root 25 10-28 07:02 log1.txt -rw-r--r-- 1 root root 13 10-28 06:16 log2.txt -rw-r--r-- 1 root root 29 10-28 06:05 test1.txt drwxr-xr-x 2 root root 4096 10-25 17:56 test5-1 [root@localhost test5]# cd .. [root@localhost test]# cd test3/ [root@localhost test3]# ll drwxr-xr-x 2 root root 4096 10-28 06:21 logs drwxr-xr-x 2 root root 4096 10-28 07:02 test4 [root@localhost test3]# |
例項九:檔案被覆蓋前做簡單備份,前面加引數-b
命令:
1 |
mv log1.txt -b log2.txt |
輸出:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
[root@localhost test5]# ll -rw-r--r-- 1 root root 25 10-28 07:02 log1.txt -rw-r--r-- 1 root root 13 10-28 06:16 log2.txt -rw-r--r-- 1 root root 29 10-28 06:05 test1.txt drwxr-xr-x 2 root root 4096 10-25 17:56 test5-1 [root@localhost test5]# mv log1.txt -b log2.txt mv:是否覆蓋“log2.txt”? y [root@localhost test5]# ll -rw-r--r-- 1 root root 25 10-28 07:02 log2.txt -rw-r--r-- 1 root root 13 10-28 06:16 log2.txt~ -rw-r--r-- 1 root root 29 10-28 06:05 test1.txt drwxr-xr-x 2 root root 4096 10-25 17:56 test5-1 [root@localhost test5]# |
說明:
-b 不接受引數,mv會去讀取環境變數VERSION_CONTROL來作為備份策略。
–backup該選項指定如果目標檔案存在時的動作,共有四種備份策略:
1.CONTROL=none或off : 不備份。
2.CONTROL=numbered或t:數字編號的備份
3.CONTROL=existing或nil:如果存在以數字編號的備份,則繼續編號備份m+1…n:
執行mv操作前已存在以數字編號的檔案log2.txt.~1~,那麼再次執行將產生log2.txt~2~,以次類推。如果之前沒有以數字編號的檔案,則使用下面講到的簡單備份。
4.CONTROL=simple或never:使用簡單備份:在被覆蓋前進行了簡單備份,簡單備份只能有一份,再次被覆蓋時,簡單備份也會被覆蓋。
本系列文章:
每天一個 Linux 命令(1):ls命令
每天一個 Linux 命令(2):cd命令
每天一個 Linux 命令(3):pwd命令
每天一個 Linux 命令(4):mkdir命令
每天一個 Linux 命令(5):rm 命令
每天一個 Linux 命令(6):rmdir 命令