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/sysctl.md Normal file
View File

@@ -0,0 +1,24 @@
# sysctl
> 커널 상태 정보를 확인합니다.
> 더 많은 정보: <https://keith.github.io/xcode-man-pages/sysctl.8.html>.
- 사용 가능한 모든 변수와 값 표시:
`sysctl -a`
- Apple 모델 식별자 표시:
`sysctl -n hw.model`
- CPU 모델 표시:
`sysctl -n machdep.cpu.brand_string`
- 사용 가능한 CPU 기능(MMX, SSE, SSE2, SSE3, AES 등) 표시:
`sysctl -n machdep.cpu.features`
- 변경 가능한 커널 상태 변수 설정:
`sysctl -w {{section.tunable}}={{값}}`