파일을 시도 중인데 find
어떤 이유로 아직 알지 못하는 디렉터리나 파일이 생략되었습니다. 내가 이것을 실행하면
cd ~/Documents/GamesTeam/games/ichristo_dev
find . -name PayoutTest.sh
주어진
./fog/server/source/scripts/PayoutTest.sh
./fog/server/source/bin/templates/PayoutTest.sh
./fog/server/source/target/fog-core-bin/scripts/bin/PayoutTest.sh
세 가지 결과를 얻었지만 원하는 결과가 나오지 않았습니다. 대신 하위 폴더로 이동하면
cd ~/Documents/GamesTeam/games/ichristo_dev/fog/server/deploy
find . -name PayoutTest.sh
주어진
./bin/PayoutTest.sh
추가로 찾았습니다. 왜 이런 일이 발생합니까?
답변1
다른 디렉토리에 대한 심볼릭 링크가 있을 수 있습니다.
무엇을 보여줄까요 ls -l ~/Documents/GamesTeam/games/ichristo_dev/fog/server/deploy
?
이 옵션을 사용하면 -L
디렉터리 트리에 연결되어 있지만 실제로는 위치하지 않는 디렉터리와 파일을 포함할 수 있습니다.