2021-05-01 19:28:28 +01:00
|
|
|
# uuencode
|
|
|
|
|
|
|
|
> Encode binary files into ASCII for transport via mediums that only support simple ASCII encoding.
|
|
|
|
> More information: <https://manned.org/uuencode>.
|
|
|
|
|
2022-12-04 07:53:34 +00:00
|
|
|
- Encode a file and print the result to `stdout`:
|
2021-05-01 19:28:28 +01:00
|
|
|
|
|
|
|
`uuencode {{path/to/input_file}} {{output_file_name_after_decoding}}`
|
|
|
|
|
2021-08-15 18:59:09 +01:00
|
|
|
- Encode a file and write the result to a file:
|
2021-05-01 19:28:28 +01:00
|
|
|
|
|
|
|
`uuencode -o {{path/to/output_file}} {{path/to/input_file}} {{output_file_name_after_decoding}}`
|
|
|
|
|
2021-08-15 18:59:09 +01:00
|
|
|
- Encode a file using Base64 instead of the default uuencode encoding and write the result to a file:
|
2021-05-01 19:28:28 +01:00
|
|
|
|
|
|
|
`uuencode -m -o {{path/to/output_file}} {{path/to/input_file}} {{output_file_name_after_decoding}}`
|