MAC OS X 10.11.4 - 파일을 복사할 때 확장 파일 속성이 손실됨

MAC OS X 10.11.4 - 파일을 복사할 때 확장 파일 속성이 손실됨

확장된 속성으로 주석이 포함된 파일이 있습니다. 터미널에서 속성을 보는 방법은 다음과 같습니다.
mdls -name kMDItemFinderComment path_to_file
답변을 얻습니다.
kMDItemFinderComment = "my_comment"

이 댓글을 유지하면서 이 파일을 new_location에 복사하려면 Returns를
cp -p path_to_file new_location
입력하는 것처럼 작동하는 것으로 보이는 Everything을 입력합니다.
mdls -name kMDItemFinderComment new_location

kMDItemFinderComment = "my_comment"

Finder 창에서 new_location에 복사된 파일에 액세스할 때 문제가 발생합니다. "정보 보기"를 클릭했지만 "댓글" 섹션이 비어 있었습니다. 이 작업을 수행한 후 다시 시도
mdls -name kMDItemFinderComment new_location
하면
kMDItemFinderComment = (null)

누가 날 도울 수 있죠?

추신: xattr을 사용해야 합니까?

관련 정보