标签:移动和重命令mv
1、移动文件和目录
[root@wy ~]# ls
111 123.txt 222 234 anaconda-ks.cfg install.log install.log.syslog
[root@wy ~]# mv 123.txt 222
[root@wy ~]# ls
111 222 234 anaconda-ks.cfg install.log install.log.syslog
[root@wy ~]# mv 111 222
[root@wy ~]# ls
222 234 anaconda-ks.cfg install.log install.log.syslog
注:mv移动目录时不加-r ,跟rm、cp不同
2、如果跨分区移动会很慢,而同一个分区内移动就很快
本文出自 “linux” 博客,转载请与作者联系!
标签:移动和重命令mv
原文地址:http://warm51fun.blog.51cto.com/3884274/1891511