mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* linux/s*: add Korean translation * systemctl: update Korean translation * Update pages.ko/linux/sqfscat.md Co-authored-by: Chooooo <contact@choo.ooo> * Update pages.ko/linux/shar.md Co-authored-by: Chooooo <contact@choo.ooo> * Update pages.ko/linux/sqfstar.md Co-authored-by: Chooooo <contact@choo.ooo> * shnsplit: fix typo * semanage: update Korean translation --------- Co-authored-by: Chooooo <contact@choo.ooo>
16 lines
454 B
Markdown
16 lines
454 B
Markdown
# strip
|
|
|
|
> 실행 파일이나 객체 파일에서 심볼을 제거합니다.
|
|
> 더 많은 정보: <https://manned.org/strip>.
|
|
|
|
- 입력 파일을 심볼이 제거된 버전으로 대체:
|
|
|
|
`strip {{경로/대상/파일}}`
|
|
|
|
- 파일에서 심볼을 제거하고, 출력을 특정 파일에 저장:
|
|
|
|
`strip {{경로/대상/입력_파일}} -o {{경로/대상/출력_파일}}`
|
|
|
|
- 디버그 심볼만 제거:
|
|
|
|
`strip --strip-debug {{경로/대상/파일.o}}`
|