From dccb963036227f3fcb4b5a7bb49a9070bd5225e4 Mon Sep 17 00:00:00 2001 From: bl-ue <54780737+bl-ue@users.noreply.github.com> Date: Tue, 18 May 2021 13:41:46 -0400 Subject: [PATCH] uudecode: add page (#5971) --- pages/common/uudecode.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 pages/common/uudecode.md diff --git a/pages/common/uudecode.md b/pages/common/uudecode.md new file mode 100644 index 000000000..5cfe79332 --- /dev/null +++ b/pages/common/uudecode.md @@ -0,0 +1,12 @@ +# uudecode + +> Decode files encoded by `uuencode`. +> More information: . + +- 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}}`