[unix] 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 명령이 작동하지 않습니까?



답변

이렇게하면 이해하게 될 것입니다.

cd ~/vol/examples/tutorial
pwd

아마도 pwd의 결과는 단순한 /vol/examples/tutorial것이 아니라/home/username/vol/examples/tutorial

~는 일반적으로 cygiwn / home 아래의 사용자 홈 디렉토리로 대체됩니다.


답변