mv 命令

时间:2021-12-29 11:02:26

mv 命令 移动或重命名文件

[root@localhost soft]# touch .txt
[root@localhost soft]#
[root@localhost soft]# ls
.txt
[root@localhost soft]# mv .txt .txt //重命名文件
[root@localhost soft]# ls
.txt
[root@localhost soft]# [root@localhost soft]# mv .txt ../aaa/ //移动文件
[root@localhost soft]# ls
[root@localhost soft]# ls ../aaa/
.txt

-f    若目标文件或目录与现有的文件或目录重复,则直接覆盖现有的文件或目录