mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +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>
395 B
395 B
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}}