Linux使用命令出现的错误及解决方案【持续更新】
程序员文章站
2022-05-28 12:20:34
...
- 使用移动命令
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
上一篇: 2020-10-24 pandas导入出现错误或者警告解决方案
下一篇: win远程连接centos