osx/terminal-notifier: fix typo, osx/*: add Korean translation (#14758)

This commit is contained in:
코드싸이
2024-11-12 04:54:15 +09:00
committed by GitHub
parent 3c745bfaae
commit f5003bb990
202 changed files with 3796 additions and 1 deletions

24
pages.ko/osx/xattr.md Normal file
View File

@@ -0,0 +1,24 @@
# xattr
> 확장 파일 시스템 속성을 다루는 유틸리티.
> 더 많은 정보: <https://keith.github.io/xcode-man-pages/xattr.1.html>.
- 주어진 파일의 key:value 확장 속성 나열:
`xattr -l {{파일}}`
- 주어진 파일에 속성 작성:
`xattr -w {{속성_키}} {{속성_값}} {{파일}}`
- 주어진 파일에서 속성 삭제:
`xattr -d {{com.apple.quarantine}} {{파일}}`
- 주어진 파일에서 모든 확장 속성 삭제:
`xattr -c {{파일}}`
- 주어진 폴더에서 속성을 재귀적으로 삭제:
`xattr -rd {{속성_키}} {{폴더}}`