less - perl pragma to request less of something

NAME SYNOPSIS DESCRIPTION FOR MODULE AUTHORSBOOLEAN = less->of( FEATURE ) FEATURES = less->of() CAVEATS NAME less - perl pragma to request less of something SYNOPSIS use less 'CPU'; DESCRIPTION This is a user-pragma. If you're very lucky some code you're using will know that you asked for less CPU usage or ram or fat or... we just can't know. Consult your documentation on everything you're currently using. For general suggestions, try requesting CPU or memory . use less 'memory'; use

Net::SMTP - Simple Mail Transfer Protocol Client

NAME SYNOPSIS DESCRIPTION EXAMPLES CONSTRUCTOR METHODS ADDRESSES SEE ALSO AUTHOR COPYRIGHT NAME Net::SMTP - Simple Mail Transfer Protocol Client SYNOPSIS use Net::SMTP; # Constructors $smtp = Net::SMTP->new('mailhost'); $smtp = Net::SMTP->new('mailhost', Timeout => 60); DESCRIPTION This module implements a client interface to the SMTP and ESMTP protocol, enabling a perl5 application to talk to SMTP servers. This documentation assumes that you are familiar with the concepts of the S

IO::Handle->format_line_break_characters EXPR

IO::Handle->format_line_break_characters EXPR

unless

unless These flow-control keywords are documented in Compound Statements in perlsyn.

Encode::Config -- internally used by Encode

NAME NAME Encode::Config -- internally used by Encode

perlsyn - Perl syntax

NAME DESCRIPTIONDeclarations Comments Simple Statements Truth and Falsehood Statement Modifiers Compound Statements Loop Control For Loops Foreach Loops Basic BLOCKs Switch Statements Goto The Ellipsis Statement PODs: Embedded Documentation Plain Old Comments (Not!) Experimental Details on given and when NAME perlsyn - Perl syntax DESCRIPTION A Perl program consists of a sequence of declarations and statements which run from the top to the bottom. Loops, subroutines, and oth

open

open FILEHANDLE,EXPR open FILEHANDLE,MODE,EXPR open FILEHANDLE,MODE,EXPR,LIST open FILEHANDLE,MODE,REFERENCE open FILEHANDLE Opens the file whose filename is given by EXPR, and associates it with FILEHANDLE. Simple examples to open a file for reading: open(my $fh, "<", "input.txt") or die "cannot open < input.txt: $!"; and for writing: open(my $fh, ">", "output.txt") or die "cannot open > output.txt: $!"; (The following is a comprehensive reference to open(): for a gentler

IPC::Msg - SysV Msg IPC object class

NAME SYNOPSIS DESCRIPTION METHODS SEE ALSO AUTHORS COPYRIGHT NAME IPC::Msg - SysV Msg IPC object class SYNOPSIS use IPC::SysV qw(IPC_PRIVATE S_IRUSR S_IWUSR); use IPC::Msg; $msg = IPC::Msg->new(IPC_PRIVATE, S_IRUSR | S_IWUSR); $msg->snd($msgtype, $msgdata); $msg->rcv($buf, 256); $ds = $msg->stat; $msg->remove; DESCRIPTION A class providing an object based interface to SysV IPC message queues. METHODS new ( KEY , FLAGS ) Creates a new message queue associated with KEY . A

File::Path - Create or remove directory trees

NAME VERSION SYNOPSIS DESCRIPTIONERROR HANDLING NOTES DIAGNOSTICS SEE ALSO BUGS ACKNOWLEDGEMENTS AUTHORS COPYRIGHT LICENSE NAME File::Path - Create or remove directory trees VERSION This document describes version 2.09 of File::Path, released 2013-01-17. SYNOPSIS use File::Path qw(make_path remove_tree); make_path('foo/bar/baz', '/zug/zwang'); make_path('foo/bar/baz', '/zug/zwang', { verbose => 1, mode => 0711, }); remove_tree('foo/bar/baz', '/zug/zwang'); remove_tree('foo/b

TAP::Parser::Grammar - A grammar for the Test Anything Protocol.

NAME VERSION SYNOPSIS DESCRIPTION METHODSClass Methods Instance Methods TAP GRAMMAR SUBCLASSING SEE ALSO NAME TAP::Parser::Grammar - A grammar for the Test Anything Protocol. VERSION Version 3.35 SYNOPSIS use TAP::Parser::Grammar; my $grammar = $self->make_grammar({ iterator => $tap_parser_iterator, parser => $tap_parser, version => 12, }); my $result = $grammar->tokenize; DESCRIPTION TAP::Parser::Grammar tokenizes lines from a TAP::Parser::Iterator and constructs