Forrest logo
back to context overview

uuencode

List of commands for uuencode:

  • uuencode:tldr:32bea uuencode: Encode a file using Base64 instead of the default uuencode encoding and write the result to a file.
    $ uuencode -m -o ${path-to-output_file} ${path-to-input_file} ${output_file_name_after_decoding}
    try on your machine
    explain this command
  • uuencode:tldr:45b57 uuencode: Encode a file and print the result to `stdout`.
    $ uuencode ${path-to-input_file} ${output_file_name_after_decoding}
    try on your machine
    explain this command
  • uuencode:tldr:9ddec uuencode: Encode a file and write the result to a file.
    $ uuencode -o ${path-to-output_file} ${path-to-input_file} ${output_file_name_after_decoding}
    try on your machine
    explain this command
back to context overview