linux命令大全之mv命令
1.命令格式: 2.命令功能: 视mv命令中第二个参数类型的不同(是目标文件还是目标目录),mv命令将文件重命名或将其移至一个新的目录中。当第二个参数类型是文件时,mv命令完成文件重命名,此时,源文件只能有一个(也可以是源目录名),它将所给的源文件或目录重命名为给定的目标文件名。当第二个参数是已存在的目录名称时,源文件或目录参数可以有多个,mv命令将各参数指定的源文件均移至目标目录中。在跨文件系统移动文件时,mv先拷贝,再将原有文件删除,而链至该文件的链接也将丢失。 3.命令参数:
-b :若需覆盖文件,则覆盖前先行备份。 4.命令实例: 实例一:文件改名
命令:
输出: [it.net.cn 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 [it.net.cn test]# mv test.log test1.txt [it.net.cn 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
说明: 实例二:移动文件
命令:
输出: [it.net.cn 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 [it.net.cn test]# mv test1.txt test3 [it.net.cn 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 [it.net.cn test]# cd test3 [it.net.cn test3]# ll 总计 4 -rw-r--r-- 1 root root 29 10-28 06:05 test1.txt [it.net.cn test3]#
说明: 实例三:将文件log1.txt,log2.txt,log3.txt移动到目录test3中。
命令: mv log1.txt log2.txt log3.txt test3 mv -t /opt/soft/test/test4/ log1.txt log2.txt log3.txt
输出: [it.net.cn 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 [it.net.cn test]# mv log1.txt log2.txt log3.txt test3 [it.net.cn test]# ll 总计 16drwxrwxrwx 2 root root 4096 10-28 06:18 test3 [it.net.cn test]# cd test3/ [it.net.cn 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 [it.net.cn test3]# [it.net.cn 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 [it.net.cn test3]# mv -t /opt/soft/test/test4/ log1.txt log2.txt log3.txt [it.net.cn test3]# cd .. [it.net.cn test]# cd test4/ [it.net.cn 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 [it.net.cn test4]#
说明: 实例四:将文件file1改名为file2,如果file2已经存在,则询问是否覆盖
命令:
输出: [jbxue.com 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 [it.net.cn test4]# cat log1.txt odfdfs [it.net.cn test4]# cat log2.txt ererwerwer [it.net.cn test4]# mv -i log1.txt log2.txt mv:是否覆盖“log2.txt”? y [it.net.cn test4]# cat log2.txt odfdfs [it.net.cn test4]# 实例五:将文件file1改名为file2,即使file2存在,也是直接覆盖掉。
命令:
输出: [it.net.cn 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 [it.net.cn test4]# cat log2.txt odfdfs [it.net.cn test4]# cat log3 cat: log3: 没有那个文件或目录 [it.net.cn 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 [it.net.cn test4]# cat log2.txt odfdfs [it.net.cn test4]# cat log3.txt dfosdfsdfdss [it.net.cn test4]# mv -f log3.txt log2.txt [it.net.cn test4]# cat log2.txt dfosdfsdfdss [it.net.cn test4]# ll 总计 4 -rw-r--r-- 1 root root 13 10-28 06:16 log2.txt [jbxue.com test4]#
说明: 实例六:目录的移动
命令:
输出: [it.net.cn test4]# ll -rw-r--r-- 1 root root 13 10-28 06:16 log2.txt [jbxue.com test4]# ll -rw-r--r-- 1 root root 13 10-28 06:16 log2.txt [it.net.cn test4]# cd .. [it.net.cn 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 [it.net.cn test]# cd test3 [it.net.cn 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 [it.net.cn test3]# cd .. [it.net.cn test]# mv test4 test3 [it.net.cn 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 [it.net.cn test]# cd test3/ [it.net.cn 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 [it.net.cn test3]#
说明:
命令:
输出: [it.net.cn 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 [it.net.cn test4]# mv * ../ [it.net.cn test4]# ll [it.net.cn test4]# cd .. [it.net.cn 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 实例八:把当前目录的一个子目录里的文件移动到另一个子目录里
命令:
输出: [it.net.cn 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 [it.net.cn test]# cd test3 [it.net.cn 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 [it.net.cn test3]# cd .. [it.net.cn test]# mv test3/*.txt test5 [it.net.cn test]# cd test5 [it.net.cn 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 [it.net.cn test5]# cd .. [it.net.cn test]# cd test3/ [it.net.cn 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 [jbxue.com test3]# 实例九:文件被覆盖前做简单备份,前面加参数-b
命令:
输出: [it.net.cn 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 [it.net.cn test5]# mv log1.txt -b log2.txt mv:是否覆盖“log2.txt”? y [it.net.cn 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 [it.net.cn test5]#
说明: (责任编辑:IT) |