mv

来源:互联网 发布:迈达斯软件civil 编辑:程序博客网 时间:2024/04/28 23:40

mv:重命令或者移动文件或目录

格式:mv 文件 目标目录


[root@life wudi]# ll
total 24
drwxr-xr-x. 2 root root  4096 Jul 31 06:07 testcpf
-rw-rw-r--. 1 wudi wudi 20127 Jul 30 06:50 testwudi
[root@life wudi]# mv testwudi test
[root@life wudi]# ll
total 24
-rw-rw-r--. 1 wudi wudi 20127 Jul 30 06:50 test
drwxr-xr-x. 2 root root  4096 Jul 31 06:07 testcpf
[root@life wudi]# mv test ./testcpf/
[root@life wudi]# ll
total 4
drwxr-xr-x. 2 root root 4096 Jul 31 06:15 testcpf
[root@life wudi]# ll testcpf/*
-rw-rw-r--. 1 wudi wudi 20127 Jul 30 06:50 testcpf/test
-rw-r--r--. 1 root root 20127 Jul 31 06:07 testcpf/testwudi

0 0
原创粉丝点击