|
Convert::yEnc::Decoder - decodes yEncoded files |
Convert::yEnc::Decoder - decodes yEncoded files
use Convert::yEnc::Decoder;
$decoder = new Convert::yEnc::Decoder; $decoder = new Convert::yEnc::Decoder $dir;
$decoder->out_dir($dir);
eval
{
$decoder->decode( $file);
$decoder->decode(\*FILE);
$decoder->decode;
};
print $@ if $@;
$name = $decoder->name; $file = $decoder->file; $size = $decoder->size;
$ybegin = $decoder->ybegin; $ypart = $decoder->ypart; $yend = $decoder->yend;
yEnc decoder
Convert::yEnc::Decoder decodes a yEncoded file and writes it to disk.
Methods are provided for returning information about the decoded file.
Nothing.
new Convert::yEnc::Decodernew Convert::yEnc::Decoder $dirConvert::yEnc::Decoder object.
Decoded files will be written to $dir. If $dir is omitted, it defaults to the current working directory.
out_dir($dir)decode($file)decode(\*FILE)decodedies if there are any errors.
The first form reads from the file named $file.
The second form reads from the file handle FILE.
The third form reads from STDIN.
The data stream need not begin at the =yBegin line;
decode will search until it finds it.
decode stops reading when it finds the =yend line,
so Decoder can decode multiple files from the same
data stream.
C<decode> may be called repeatedly on the same C<Decoder> object to decode multiple files.
namefilesizeybegin=ybegin line.
ypart=ypart line,
or undef if there wasn't one.
yend=yend line.
To decode a single file on the command line, write
perl -MConvert::yEnc::Decoder -e 'Convert::yEnc::Decoder->new->decode' < myFile
Steven W McDougall, <swmcd@world.std.com>
Copyright (c) 2002 by Steven McDougall. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|
Convert::yEnc::Decoder - decodes yEncoded files |