HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

upx — Compress or decompress executables. More information: <https://github.com/upx/upx/blob/devel/doc/upx

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commanddecompressupxcliinformationexecutablesmorecompress

Problem

How to use the upx command: Compress or decompress executables. More information: <https://github.com/upx/upx/blob/devel/doc/upx.pod>.

Solution

upx — Compress or decompress executables. More information: <https://github.com/upx/upx/blob/devel/doc/upx.pod>.

Compress executable:
upx {{path/to/file}}


Decompress executable:
upx -d {{path/to/file}}


Display help:
upx --help

Code Snippets

Compress executable

upx {{path/to/file}}

Decompress executable

upx -d {{path/to/file}}

Display help

upx --help

Context

tldr-pages: common/upx

Revisions (0)

No revisions yet.