文章作者:Tyan
博客:noahsnail.com | CSDN | 简书
在Linux中,重命名文件称为移动,mv命令可以将文件重命名或移动。
# 命令形式:mv file1 file2
# 文件重命名
$ mv mvtest mvtest1
$ ls
a b c mvtest1 test
# 文件移动
$ mv mvtest1 ~/
$ ls
a b c test
$ cd
$ ls mvtest1
mvtest1
备注:-i
参数可以在重命名时,与现有文件名重复时会先询问,否则会直接覆盖。
参考文献:
- Linux命令行与shell脚本编程大全(第三版)
网友评论