mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-06 04:55:25 +02:00

* batch1 * batch2 * batch3 * batch4 * Update matchpathcon.md * Update pages/linux/arecord.md Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * Update pages/linux/arecord.md Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * Update pages/linux/arecord.md Co-authored-by: Wiktor Perskawiec <git@spageektti.cc> --------- Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
16 lines
395 B
Markdown
16 lines
395 B
Markdown
# strip
|
|
|
|
> Discard symbols from executables or object files.
|
|
> More information: <https://manned.org/strip>.
|
|
|
|
- Replace the input file with its stripped version:
|
|
|
|
`strip {{path/to/file}}`
|
|
|
|
- Strip symbols from a file, saving the output to a specific file:
|
|
|
|
`strip {{path/to/input_file}} -o {{path/to/output_file}}`
|
|
|
|
- Strip debug symbols only:
|
|
|
|
`strip {{[-d|--strip-debug]}} {{path/to/file.o}}`
|