Linux mv命令
Posted nonzero
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux mv命令相关的知识,希望对你有一定的参考价值。
mv命令是move的缩写,常用来对文件、目录进行, 1):移动,2):改名
1、用法
mv [选项] [参数..]
2、命令选项
-b 当文件存在时,覆盖前,为其创建一个备份;
-f, --force 覆盖前不询问
-i, --interactive 覆盖前询问
-n, --no-clobber 不覆盖已存在文件,如果您指定了-i、-f、-n 中的多个,仅最后一个生效。
-u, --update 若目标文件存在,且source比较新,才会更新
3、实例
1)文件改名,将 test.txt 改名为 aaa.txt
[[email protected] ~]# ls anaconda-ks.cfg test test.txt [[email protected] ~]# mv test.txt aaa.txt [[email protected] ~]# ls aaa.txt anaconda-ks.cfg test
2)文件移动,将 aaa.txt 移动到 test 目录下
[[email protected] ~]# mv aaa.txt test/ [[email protected] ~]# tree . ├── anaconda-ks.cfg └── test └── aaa.txt
mv命令是move的缩写,可以用来移动文件或者将文件改名,这也是个常用命令,经常用来备份文件或者目录。
以上是关于Linux mv命令的主要内容,如果未能解决你的问题,请参考以下文章