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

20
pages.ko/osx/chflags.md Normal file
View File

@@ -0,0 +1,20 @@
# chflags
> 파일 또는 디렉토리 플래그 변경.
> 더 많은 정보: <https://keith.github.io/xcode-man-pages/chflags.1.html>.
- 파일에 `hidden` 플래그 설정:
`chflags {{hidden}} {{경로/대상/파일}}`
- 파일에서 `hidden` 플래그 해제:
`chflags {{nohidden}} {{경로/대상/파일}}`
- 디렉토리에 대해 `uchg` 플래그를 재귀적으로 설정:
`chflags -R {{uchg}} {{경로/대상/폴더}}`
- 디렉토리에 대해 `uchg` 플래그를 재귀적으로 해제:
`chflags -R {{nouchg}} {{경로/대상/폴더}}`