File::Compare - Compare files or filehandles

NAME SYNOPSIS DESCRIPTION RETURN AUTHOR NAME File::Compare - Compare files or filehandles SYNOPSIS use File::Compare; if (compare("file1","file2") == 0) { print "They're equal\n"; } DESCRIPTION The File::Compare::compare function compares the contents of two sources, each of which can be a file or a file handle. It is exported from File::Compare by default. File::Compare::cmp is a synonym for File::Compare::compare. It is exported from File::Compare only by request. File::Compare::com

Term::Complete - Perl word completion module

NAME SYNOPSIS DESCRIPTION DIAGNOSTICS BUGS AUTHOR NAME Term::Complete - Perl word completion module SYNOPSIS $input = Complete('prompt_string', \@completion_list); $input = Complete('prompt_string', @completion_list); DESCRIPTION This routine provides word completion on the list of words in the array (or array ref). The tty driver is put into raw mode and restored using an operating system specific command, in UNIX-like environments stty . The following command characters are defined: <t

PerlIO::via::QuotedPrint - PerlIO layer for quoted-printable strings

NAME SYNOPSIS VERSION DESCRIPTION REQUIRED MODULES SEE ALSO ACKNOWLEDGEMENTS COPYRIGHT NAME PerlIO::via::QuotedPrint - PerlIO layer for quoted-printable strings SYNOPSIS use PerlIO::via::QuotedPrint; open( my $in, '<:via(QuotedPrint)', 'file.qp' ) or die "Can't open file.qp for reading: $!\n"; open( my $out, '>:via(QuotedPrint)', 'file.qp' ) or die "Can't open file.qp for writing: $!\n"; VERSION This documentation describes version 0.08. DESCRIPTION This module implements a PerlI

$PREMATCH

$PREMATCH

CPAN::Debug - internal debugging for CPAN.pm

NAME LICENSE NAME CPAN::Debug - internal debugging for CPAN.pm LICENSE This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

reverse

reverse LIST In list context, returns a list value consisting of the elements of LIST in the opposite order. In scalar context, concatenates the elements of LIST and returns a string value with all characters in the opposite order. print join(", ", reverse "world", "Hello"); # Hello, world print scalar reverse "dlrow ,", "olleH"; # Hello, world Used without arguments in scalar context, reverse() reverses $_ . $_ = "dlrow ,olleH"; print reverse; # No output, list con

PerlIO::scalar - in-memory IO, scalar IO

NAME SYNOPSIS DESCRIPTION IMPLEMENTATION NOTE NAME PerlIO::scalar - in-memory IO, scalar IO SYNOPSIS my $scalar = ''; ... open my $fh, "<", \$scalar or die; open my $fh, ">", \$scalar or die; open my $fh, ">>", \$scalar or die; or my $scalar = ''; ... open my $fh, "<:scalar", \$scalar or die; open my $fh, ">:scalar", \$scalar or die; open my $fh, ">>:scalar", \$scalar or die; DESCRIPTION A filehandle is opened but the file operations are performed "in-memory" on

msgsnd

msgsnd ID,MSG,FLAGS Calls the System V IPC function msgsnd to send the message MSG to the message queue ID. MSG must begin with the native long integer message type, be followed by the length of the actual message, and then finally the message itself. This kind of packing can be achieved with pack("l! a*", $type, $message) . Returns true if successful, false on error. See also the IPC::SysV and IPC::SysV::Msg documentation. Portability issues: msgsnd in perlport.

glob

glob EXPR glob In list context, returns a (possibly empty) list of filename expansions on the value of EXPR such as the standard Unix shell /bin/csh would do. In scalar context, glob iterates through such filename expansions, returning undef when the list is exhausted. This is the internal function implementing the <*.c> operator, but you can use it directly. If EXPR is omitted, $_ is used. The <*.c> operator is discussed in more detail in I/O Operators in perlop. Note that glob spl

Memoize::Storable - store Memoized data in Storable database

NAME DESCRIPTION NAME Memoize::Storable - store Memoized data in Storable database DESCRIPTION See Memoize.