snippetbashTip
uudecode — Decode files encoded by `uuencode`. More information: <https://manned.org/uudecode>.
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.