diff options
author | Glenn Becker <burningc@sdf.org> | 2013-01-01 00:31:53 -0500 |
---|---|---|
committer | dsomero <xgizzmo@slackbuilds.org> | 2013-01-01 00:39:17 -0500 |
commit | 5ccd1763a5574cc8a568abe261f7a8b27948241c (patch) | |
tree | b36b19556354ff5a3137fd69effc63bbc506f631 /perl/perl-Convert-UU/README | |
parent | 28802da381668b028cbc6be35c8c3b3c533c6314 (diff) |
perl/perl-Convert-UU: Added (perl module)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'perl/perl-Convert-UU/README')
-rw-r--r-- | perl/perl-Convert-UU/README | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/perl/perl-Convert-UU/README b/perl/perl-Convert-UU/README new file mode 100644 index 000000000000..e7ab92b7ae76 --- /dev/null +++ b/perl/perl-Convert-UU/README @@ -0,0 +1,22 @@ +Convert::UU -- Perl module for uuencode and uudecode + +- uuencode + +uuencode() takes as the first argument a string that is to +be uuencoded. Note, that it is the string that is encoded, +not a filename. Alternatively a filehandle may be passed +that must be opened for reading. It returns the uuencoded +string including begin and end. Second and third argument +are optional and specify filename and mode. If unspecified +these default to "uuencode.uu" and 644. + +- uudecode + +uudecode() takes a string as argument which will be uudecoded. +If the argument is a filehandle this handle will be read +instead. If it is a reference to an ARRAY, the elements are +treated like lines that form a string. Leading and trailing +garbage will be ignored. The function returns the uudecoded +string for the first begin/end pair. In array context it +returns an array whose first element is the uudecoded string, +the second is the filename and the third is the mode. |