uuencode
all
Encode binary files into ASCII for transport via mediums that only support simple ASCII encoding.
More info →Options (1)
-m, --base64booleanEncode a file using Base64 instead of the default uuencode encoding and write the result to a file
Example:
uuencode {{[-m|--base64]}} -o {{path/to/output_file}} {{path/to/input_file}} {{output_file_name_after_decoding}}Examples (3)
Encode a file and print the result to `stdout`
uuencode path/to/input_file output_file_name_after_decodingEncode a file and write the result to a file
uuencode -o path/to/output_file path/to/input_file output_file_name_after_decodingEncode a file using Base64 instead of the default uuencode encoding and write the result to a file
uuencode [-m|--base64] -o path/to/output_file path/to/input_file output_file_name_after_decodingmade by @shridhargupta | data from tldr-pages