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

@@ -0,0 +1,20 @@
# lipo
> Mach-O 유니버설 바이너리를 처리합니다.
> 더 많은 정보: <https://keith.github.io/xcode-man-pages/lipo.1.html>.
- 두 개의 단일 아키텍처 파일에서 유니버설 파일 생성:
`lipo {{경로/대상/바이너리_파일.x86_64}} {{경로/대상/바이너리_파일.arm64e}} -create -output {{경로/대상/바이너리_파일}}`
- 유니버설 파일에 포함된 모든 아키텍처 나열:
`lipo {{경로/대상/바이너리_파일}} -archs`
- 유니버설 파일에 대한 자세한 정보 표시:
`lipo {{경로/대상/바이너리_파일}} -detailed_info`
- 유니버설 파일에서 단일 아키텍처 파일 추출:
`lipo {{경로/대상/바이너리_파일}} -thin {{arm64e}} -output {{경로/대상/바이너리_파일.arm64e}}`