IO::Handle->input_record_separator( EXPR )

IO::Handle->input_record_separator( EXPR )

IO::Handle->format_formfeed(EXPR)

IO::Handle->format_formfeed(EXPR)

IO::Handle->format_line_break_characters EXPR

IO::Handle->format_line_break_characters EXPR

IO::Handle - supply object methods for I/O handles

NAME SYNOPSIS DESCRIPTION CONSTRUCTOR METHODS NOTE SEE ALSO BUGS HISTORY NAME IO::Handle - supply object methods for I/O handles SYNOPSIS use IO::Handle; $io = IO::Handle->new(); if ($io->fdopen(fileno(STDIN),"r")) { print $io->getline; $io->close; } $io = IO::Handle->new(); if ($io->fdopen(fileno(STDOUT),"w")) { $io->print("Some text\n"); } # setvbuf is not available by default on Perls 5.8.0 and later. use IO::Handle '_IOLBF'; $io->setvbuf($buffer_var,

IO::File - supply object methods for filehandles

NAME SYNOPSIS DESCRIPTION CONSTRUCTOR METHODS NOTE SEE ALSO HISTORY NAME IO::File - supply object methods for filehandles SYNOPSIS use IO::File; $fh = IO::File->new(); if ($fh->open("< file")) { print <$fh>; $fh->close; } $fh = IO::File->new("> file"); if (defined $fh) { print $fh "bar\n"; $fh->close; } $fh = IO::File->new("file", "r"); if (defined $fh) { print <$fh>; undef $fh; # automatically closes the file } $fh = IO::F

IO::Dir - supply object methods for directory handles

NAME SYNOPSIS DESCRIPTION SEE ALSO AUTHOR COPYRIGHT NAME IO::Dir - supply object methods for directory handles SYNOPSIS use IO::Dir; $d = IO::Dir->new("."); if (defined $d) { while (defined($_ = $d->read)) { something($_); } $d->rewind; while (defined($_ = $d->read)) { something_else($_); } undef $d; } tie %dir, 'IO::Dir', "."; foreach (keys %dir) { print $_, " " , $dir{$_}->size,"\n"; } DESCRIPTION The IO::Dir package provides

IO::Compress::Zip - Write zip files/buffers

NAME SYNOPSIS DESCRIPTION Functional Interfacezip $input_filename_or_reference => $output_filename_or_reference [, OPTS] Notes Optional Parameters Examples OO InterfaceConstructor Constructor Options Examples Methodsprint printf syswrite write flush tell eof seek binmode opened autoflush input_line_number fileno close newStream([OPTS]) deflateParams Importing EXAMPLESApache::GZip Revisited Working with Net::FTP SEE ALSO AUTHOR MODIFICATION HISTORY COPYRIGHT AND LICENSE NAME IO::Com

IO::Compress::RawDeflate - Write RFC 1951 files/buffers

NAME SYNOPSIS DESCRIPTION Functional Interfacerawdeflate $input_filename_or_reference => $output_filename_or_reference [, OPTS] Notes Optional Parameters Examples OO InterfaceConstructor Constructor Options Examples Methodsprint printf syswrite write flush tell eof seek binmode opened autoflush input_line_number fileno close newStream([OPTS]) deflateParams Importing EXAMPLESApache::GZip Revisited Working with Net::FTP SEE ALSO AUTHOR MODIFICATION HISTORY COPYRIGHT AND LICENSE NAME

IO::Compress::Gzip - Write RFC 1952 files/buffers

NAME SYNOPSIS DESCRIPTION Functional Interfacegzip $input_filename_or_reference => $output_filename_or_reference [, OPTS] Notes Optional Parameters Examples OO InterfaceConstructor Constructor Options Examples Methodsprint printf syswrite write flush tell eof seek binmode opened autoflush input_line_number fileno close newStream([OPTS]) deflateParams Importing EXAMPLESApache::GZip Revisited Working with Net::FTP SEE ALSO AUTHOR MODIFICATION HISTORY COPYRIGHT AND LICENSE NAME IO::Co

IO::Compress::Deflate - Write RFC 1950 files/buffers

NAME SYNOPSIS DESCRIPTION Functional Interfacedeflate $input_filename_or_reference => $output_filename_or_reference [, OPTS] Notes Optional Parameters Examples OO InterfaceConstructor Constructor Options Examples Methodsprint printf syswrite write flush tell eof seek binmode opened autoflush input_line_number fileno close newStream([OPTS]) deflateParams Importing EXAMPLESApache::GZip Revisited Working with Net::FTP SEE ALSO AUTHOR MODIFICATION HISTORY COPYRIGHT AND LICENSE NAME IO: