attribute extend라는 것인데 아직은 정확히 개념을 잡지 않고 사용법만 익힌 후 넘어간다.
Use the xattr
command. You can inspect the extended attributes:
$ xattr s.7z
com.apple.metadata:kMDItemWhereFroms
com.apple.quarantine
and use the -d
option to delete one extended attribute:
$ xattr -d com.apple.quarantine s.7z
$ xattr s.7z
com.apple.metadata:kMDItemWhereFroms
you can also use the -c
option to remove all extended attributes:
$ xattr -c s.7z
$ xattr s.7z
xattr -h
will show you the command line options, and xattr has a man page.
'맥OS' 카테고리의 다른 글
xcode에 vim 에디터로 사용하기 (0) | 2018.01.08 |
---|---|
[mac osx] static변수를 사용하려다가 링크에러!! (0) | 2016.02.14 |
[mac osx] eclipse error, Android SDK and AVD Manager ... (0) | 2016.02.12 |
[mac osx] xcode에서 vim사용하기 (0) | 2016.02.12 |
[mac osx] terminal beep sound off / 터미널 효과음(비프) 없애기 (0) | 2016.02.12 |