cp: 无法统计 `/vol/examples/tutorial/science.txt': 没有这样的文件或目录

cp: 无法统计 `/vol/examples/tutorial/science.txt': 没有这样的文件或目录

我尝试了一个命令cp /vol/examples/tutorial/science.txt .,但收到错误 -

cp: cannot stat `/vol/examples/tutorial/science.txt': No such file or directory

我不明白为什么会发生这种情况。我转到 cygwin 主文件夹并创建了必要的文件夹结构和文本文件。我还检查了文件夹结构和名称。

另外,我进入~/vol/examples/tutorial然后执行cat science.txt,我可以阅读该文档。那么为什么CP命令不起作用呢?

答案1

这样做你就会明白:

cd ~/vol/examples/tutorial 
pwd

pwd 的结果很可能不仅仅是/vol/examples/tutorial但是/home/username/vol/examples/tutorial

~ 被用户主目录替换,通常甚至在 cygiwn /home 下。

相关内容