欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Linux使用命令出现的错误及解决方案【持续更新】

程序员文章站 2022-05-28 12:20:34
...
  1. 使用移动命令
mv index.html demo/index.html
  • 以上是我想将index.html移动至demo文件夹下。
  • 出现错误
mv: cannot move ‘index.html’ to ‘demo/index.html’: No such file or directory
  • 解决方案:先进入demo文件夹下
cd demo
//再将上级目录中的index文件进行转移
mv ../index.html index.html
相关标签: 运维 linux