[//000000001]: # (uuencode \- Text encoding & decoding binary data) [//000000002]: # (Generated from file 'uuencode\.man' by tcllib/doctools with format 'markdown') [//000000003]: # (Copyright © 2002, Pat Thoyts) [//000000004]: # (uuencode\(n\) 1\.1\.4 tcllib "Text encoding & decoding binary data")
[ Main Table Of Contents | Table Of Contents | Keyword Index | Categories | Modules | Applications ]
# NAME uuencode \- UU\-encode/decode binary data # Table Of Contents - [Table Of Contents](#toc) - [Synopsis](#synopsis) - [Description](#section1) - [OPTIONS](#section2) - [EXAMPLES](#section3) - [Bugs, Ideas, Feedback](#section4) - [Keywords](#keywords) - [Category](#category) - [Copyright](#copyright) # SYNOPSIS package require Tcl 8 package require uuencode ?1\.1\.4? [__::uuencode::encode__ *string*](#1) [__::uuencode::decode__ *string*](#2) [__::uuencode::uuencode__ ?__\-name__ *string*? ?__\-mode__ *octal*? \(__\-file__ *filename* | ?__\-\-__? *string*\)](#3) [__::uuencode::uudecode__ \(__\-file__ *filename* | ?__\-\-__? *string*\)](#4) # DESCRIPTION This package provides a Tcl\-only implementation of the __uuencode\(1\)__ and __uudecode\(1\)__ commands\. This encoding packs binary data into printable ASCII characters\. - __::uuencode::encode__ *string* returns the uuencoded data\. This will encode all the data passed in even if this is longer than the uuencode maximum line length\. If the number of input bytes is not a multiple of 3 then additional 0 bytes are added to pad the string\. - __::uuencode::decode__ *string* Decodes the given encoded data\. This will return any padding characters as well and it is the callers responsibility to deal with handling the actual length of the encoded data\. \(see uuencode\)\. - __::uuencode::uuencode__ ?__\-name__ *string*? ?__\-mode__ *octal*? \(__\-file__ *filename* | ?__\-\-__? *string*\) - __::uuencode::uudecode__ \(__\-file__ *filename* | ?__\-\-__? *string*\) UUDecode a file or block of data\. A file may contain more than one embedded file so the result is a list where each element is a three element list of filename, mode value and data\. # OPTIONS - \-filename name Cause the uuencode or uudecode commands to read their data from the named file rather that taking a string parameter\. - \-name string The uuencoded data header line contains the suggested file name to be used when unpacking the data\. Use this option to change this from the default of "data\.dat"\. - \-mode octal The uuencoded data header line contains a suggested permissions bit pattern expressed as an octal string\. To change the default of 0644 you can set this option\. For instance, 0755 would be suitable for an executable\. See __chmod\(1\)__\. # EXAMPLES % set d [uuencode::encode "Hello World!"] 2&5L;&\\@5V]R;&0A % uuencode::uudecode $d Hello World! % set d [uuencode::uuencode -name hello.txt "Hello World"] begin 644 hello.txt +2&5L;&\@5V]R;&0` ` end % uuencode::uudecode $d {hello.txt 644 {Hello World}} # Bugs, Ideas, Feedback This document, and the package it describes, will undoubtedly contain bugs and other problems\. Please report such in the category *base64* of the [Tcllib Trackers](http://core\.tcl\.tk/tcllib/reportlist)\. Please also report any ideas for enhancements you may have for either package and/or documentation\. When proposing code changes, please provide *unified diffs*, i\.e the output of __diff \-u__\. Note further that *attachments* are strongly preferred over inlined patches\. Attachments can be made by going to the __Edit__ form of the ticket immediately after its creation, and then using the left\-most button in the secondary navigation bar\. # KEYWORDS [encoding](\.\./\.\./\.\./\.\./index\.md\#encoding), [uuencode](\.\./\.\./\.\./\.\./index\.md\#uuencode) # CATEGORY Text processing # COPYRIGHT Copyright © 2002, Pat Thoyts