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

17 lines
454 B
Markdown
Raw Normal View History

# strip
> 실행 파일이나 객체 파일에서 심볼을 제거합니다.
> 더 많은 정보: <https://manned.org/strip>.
- 입력 파일을 심볼이 제거된 버전으로 대체:
`strip {{경로/대상/파일}}`
- 파일에서 심볼을 제거하고, 출력을 특정 파일에 저장:
`strip {{경로/대상/입력_파일}} -o {{경로/대상/출력_파일}}`
- 디버그 심볼만 제거:
`strip --strip-debug {{경로/대상/파일.o}}`