移动文件用法(不同路径下)

#mv需要移动的文件 移动到新的文件路径下

注意:文件路径不一样


重命名用法 (相同路径下):

#mv 原文件的名字 新文件的名字

注意:老文件和新文件的路径一样


#mv /root/filel /tmp  移动/root/filel文件到/tmp目录下

#mv /tmp/filel /tmp/test1 将/tmp目录下的filel文件重命名成test1


删除文件(rm)

常用选项:

-r 递归删除,一般用于删除目录

-f 直接删除,不显示

[root@localhost tmp]# ls -l

total 0

drwxr-xr-x. 2 root root 19 Oct 25 22:36 ddd

-rw-r--r--. 1 root root  0 Oct 25 22:58 filel1

-rw-r--r--. 1 root root  0 Oct 25 22:58 filel2

[root@localhost tmp]# rm filel1   删除当前目录下的filel1文件

rm: remove regular empty file 'filel1'? y

[root@localhost tmp]# ls -l

total 0

drwxr-xr-x. 2 root root 19 Oct 25 22:36 ddd

-rw-r--r--. 1 root root  0 Oct 25 22:58 filel2


[root@localhost tmp]# rm -r dir1 删除当前目录下的dir1文件


[root@localhost tmp]# rm -f /root/filel1 强制删除/root/filel1文件,不提示,直接删除