⑦linux基础命令 mv
时间:2021-02-26 14:26:15
收藏:0
阅读:37
移动文件和目录
改名
[root@rstx-53 test]# mv file.txt /tmp/file_txt
[root@rstx-53 test]# ls
[root@rstx-53 test]# ll /tmp/file_txt
-rw-r--r-- 1 yangtao yangtao 0 Feb 26 13:19 /tmp/file_txt
移动
[root@rstx-53 test]# mv file /file
[root@rstx-53 test]# ll /
drwxr-xr-x 19 root root 3100 Feb 21 13:01 dev
drwxr-xr-x. 102 root root 8192 Feb 26 13:33 etc
-rw-r--r-- 1 root root 0 Feb 26 13:46 file
[root@rstx-53 test]# ll /file
-rw-r--r-- 1 root root 0 Feb 26 13:46 /file
[root@rstx-53 test]# touch file
[root@rstx-53 test]# mv file /file/ file后面加 / 为file目录
mv: failed to access ‘/file/’: Not a directory
原文:https://www.cnblogs.com/yangtao416/p/14451913.html
评论(0)