commands.sh

strip

linux

Discard symbols from executables or object files.

More info →

Options (1)

-d, --strip-debugboolean

Strip debug symbols only

Example: strip {{[-d|--strip-debug]}} {{path/to/file.o}}

Examples (3)

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
made by @shridhargupta | data from tldr-pages