mv命令--文件移动和重命名
文件移动和重命名
mv示例:
[root@localhost ~]# mv install.log /tmp/
[root@localhost ~]# ll /tmp/install.log
-rw-r--r-- 1 root root 27974 10-21 15:30 /tmp/install.log
说明:移动文件到临时文件目录中
[root@localhost ~]# mv /tmp/install.log /tmp/coral.org
[root@localhost ~]# ll /tmp/coral.org
-rw-r--r-- 1 root root 27974 10-21 15:30 /tmp/coral.org
说明:对文件重命名
本文出自 “linux运维分享” 博客,请务必保留此出处http://liangey.blog.51cto.com/9097868/1575262
原文地址:http://liangey.blog.51cto.com/9097868/1575262