IO::Socket::INET - Object interface for AF_INET domain sockets

NAME SYNOPSIS DESCRIPTION CONSTRUCTORMETHODS SEE ALSO AUTHOR COPYRIGHT NAME IO::Socket::INET - Object interface for AF_INET domain sockets SYNOPSIS use IO::Socket::INET; DESCRIPTION IO::Socket::INET provides an object interface to creating and using sockets in the AF_INET domain. It is built upon the IO::Socket interface and inherits all the methods defined by IO::Socket. CONSTRUCTOR new ( [ARGS] ) Creates an IO::Socket::INET object, which is a reference to a newly created symbol (see the

ExtUtils::Command - utilities to replace common UNIX commands in Makefiles etc.

NAME SYNOPSIS DESCRIPTIONFUNCTIONS SEE ALSO AUTHOR NAME ExtUtils::Command - utilities to replace common UNIX commands in Makefiles etc. SYNOPSIS perl -MExtUtils::Command -e cat files... > destination perl -MExtUtils::Command -e mv source... destination perl -MExtUtils::Command -e cp source... destination perl -MExtUtils::Command -e touch files... perl -MExtUtils::Command -e rm_f files... perl -MExtUtils::Command -e rm_rf directories... perl -MExtUtils::Command -e mkpath directories... per

TAP::Harness - Run test scripts with statistics

NAME VERSION DESCRIPTION SYNOPSIS METHODSClass Methods Instance Methods CONFIGURINGPlugins Module::Build ExtUtils::MakeMaker prove WRITING PLUGINS SUBCLASSINGMethods REPLACING SEE ALSO NAME TAP::Harness - Run test scripts with statistics VERSION Version 3.35 DESCRIPTION This is a simple test harness which allows tests to be run and results automatically aggregated and output to STDOUT. SYNOPSIS use TAP::Harness; my $harness = TAP::Harness->new( \%args ); $harness->runtests(@tests);

perlwin32 - Perl under Windows

NAME SYNOPSIS DESCRIPTIONSetting Up Perl on Windows Building Testing Perl on Windows Installation of Perl on Windows Usage Hints for Perl on Windows Running Perl Scripts Miscellaneous Things BUGS AND CAVEATS ACKNOWLEDGEMENTS AUTHORS SEE ALSO HISTORY NAME perlwin32 - Perl under Windows SYNOPSIS These are instructions for building Perl under Windows 2000 and later. DESCRIPTION Before you start, you should glance through the README file found in the top-level directory to which the Perl distri

File::Spec::Win32 - methods for Win32 file specs

NAME SYNOPSIS DESCRIPTIONNote For File::Spec::Win32 Maintainers COPYRIGHT SEE ALSO NAME File::Spec::Win32 - methods for Win32 file specs SYNOPSIS require File::Spec::Win32; # Done internally by File::Spec if needed DESCRIPTION See File::Spec::Unix for a documentation of the methods provided there. This package overrides the implementation of these methods, not the semantics. devnull Returns a string representation of the null device. tmpdir Returns a string representation of the first ex

List::Util - A selection of general-utility list subroutines

NAME SYNOPSIS DESCRIPTION LIST-REDUCTION FUNCTIONS$result = reduce { BLOCK } @list any all none notall first max maxstr min minstr product sum sum0 KEY/VALUE PAIR LIST FUNCTIONSpairgrep pairfirst pairmap pairs pairkeys pairvalues OTHER FUNCTIONSshuffle KNOWN BUGSRT #95409 SUGGESTED ADDITIONS SEE ALSO COPYRIGHT NAME List::Util - A selection of general-utility list subroutines SYNOPSIS use List::Util qw(first max maxstr min minstr reduce shuffle sum); DESCRIPTION List::Util contains a se

$^E

$^E Error information specific to the current operating system. At the moment, this differs from $! under only VMS, OS/2, and Win32 (and for MacPerl). On all other platforms, $^E is always just the same as $! . Under VMS, $^E provides the VMS status value from the last system error. This is more specific information about the last system error than that provided by $! . This is particularly important when $! is set to EVMSERR. Under OS/2, $^E is set to the error code of the last call to OS/2 A

Unicode::Normalize - Unicode Normalization Forms

NAME SYNOPSIS DESCRIPTIONNormalization Forms Decomposition and Composition Quick Check Character Data EXPORT CAVEATS AUTHOR SEE ALSO NAME Unicode::Normalize - Unicode Normalization Forms SYNOPSIS (1) using function names exported by default: use Unicode::Normalize; $NFD_string = NFD($string); # Normalization Form D $NFC_string = NFC($string); # Normalization Form C $NFKD_string = NFKD($string); # Normalization Form KD $NFKC_string = NFKC($string); # Normalization Form KC (2) using fun

@ARGV

@ARGV The array @ARGV contains the command-line arguments intended for the script. $#ARGV is generally the number of arguments minus one, because $ARGV[0] is the first argument, not the program's command name itself. See $0 for the command name.

File::Spec::Mac - File::Spec for Mac OS (Classic)

NAME SYNOPSIS DESCRIPTION METHODS AUTHORS COPYRIGHT SEE ALSO NAME File::Spec::Mac - File::Spec for Mac OS (Classic) SYNOPSIS require File::Spec::Mac; # Done internally by File::Spec if needed DESCRIPTION Methods for manipulating file specifications. METHODS canonpath On Mac OS, there's nothing to be done. Returns what it's given. catdir() Concatenate two or more directory names to form a path separated by colons (":") ending with a directory. Resulting paths are relative by default, but c