1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/linux/strip.md
코드싸이 16f2c3ed79
shnsplit: fix typo, systemctl: update Korean translation, linux/s*: add Korean translation (#14715)
* 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>
2024-11-11 15:05:30 +09:00

454 B

strip

실행 파일이나 객체 파일에서 심볼을 제거합니다. 더 많은 정보: https://manned.org/strip.

  • 입력 파일을 심볼이 제거된 버전으로 대체:

strip {{경로/대상/파일}}

  • 파일에서 심볼을 제거하고, 출력을 특정 파일에 저장:

strip {{경로/대상/입력_파일}} -o {{경로/대상/출력_파일}}

  • 디버그 심볼만 제거:

strip --strip-debug {{경로/대상/파일.o}}