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

uudecode — Decode files encoded by `uuencode`. More information: <https://manned.org/uudecode>.

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

Problem

How to use the uudecode command: Decode files encoded by uuencode. More information: <https://manned.org/uudecode>.

Solution

uudecode — Decode files encoded by uuencode. More information: <https://manned.org/uudecode>.

Decode a file that was encoded with uuencode and print the result to stdout:
uudecode {{path/to/encoded_file}}


Decode a file that was encoded with uuencode and write the result to a file:
uudecode -o {{path/to/decoded_file}} {{path/to/encoded_file}}

Code Snippets

Decode a file that was encoded with `uuencode` and print the result to `stdout`

uudecode {{path/to/encoded_file}}

Decode a file that was encoded with `uuencode` and write the result to a file

uudecode -o {{path/to/decoded_file}} {{path/to/encoded_file}}

Context

tldr-pages: common/uudecode

Revisions (0)

No revisions yet.