Locale::Script - standard codes for script identification

NAME SYNOPSIS DESCRIPTION SUPPORTED CODE SETS ROUTINES SEE ALSO AUTHOR COPYRIGHT NAME Locale::Script - standard codes for script identification SYNOPSIS use Locale::Script; $script = code2script('phnx'); # 'Phoenician' $code = script2code('Phoenician'); # 'Phnx' $code = script2code('Phoenician', LOCALE_CODE_NUMERIC); # 115 @codes = all_script_codes(); @scripts = all_script_names(); DESCRIPTION The Locale::Script modul

perlvms - VMS-specific documentation for Perl

NAME DESCRIPTION Installation Organization of Perl ImagesCore Images Perl Extensions Installing static extensions Installing dynamic extensions File specificationsSyntax Filename Case Symbolic Links Wildcard expansion Pipes PERL5LIB and PERLLIB The Perl Forked Debugger PERL_VMS_EXCEPTION_DEBUG Command lineI/O redirection and backgrounding Command line switches Perl functions Perl variables Standard modules with VMS-specific differencesSDBM_File Revision date AUTHOR NAME perlvms - VMS-s

re - Perl pragma to alter regular expression behaviour

NAME SYNOPSIS DESCRIPTION'taint' mode 'eval' mode 'strict' mode '/flags' mode 'debug' mode 'Debug' mode Exportable Functions SEE ALSO NAME re - Perl pragma to alter regular expression behaviour SYNOPSIS use re 'taint'; ($x) = ($^X =~ /^(.*)$/s); # $x is tainted here $pat = '(?{ $foo = 1 })'; use re 'eval'; /foo${pat}bar/; # won't fail (when not under -T # switch) { no re 'taint'; # the default ($x) = ($^X =~ /^(.*)$/s); # $x

perlos390 - building and installing Perl for OS/390 and z/OS

NAME SYNOPSIS DESCRIPTIONTools Unpacking Perl distribution on OS/390 Setup and utilities for Perl on OS/390 Configure Perl on OS/390 Build, Test, Install Perl on OS/390 Build Anomalies with Perl on OS/390 Testing Anomalies with Perl on OS/390 Installation Anomalies with Perl on OS/390 Usage Hints for Perl on OS/390 Floating Point Anomalies with Perl on OS/390 Modules and Extensions for Perl on OS/390 AUTHORS SEE ALSOMailing list for Perl on OS/390 HISTORY NAME perlos390 - building and inst

Module::Load::Conditional - Looking up module information / loading at runtime

NAME SYNOPSIS DESCRIPTION Methods$href = check_install( module => NAME [, version => VERSION, verbose => BOOL ] ); $bool = can_load( modules => { NAME => VERSION [,NAME => VERSION] }, [verbose => BOOL, nocache => BOOL, autoload => BOOL] ) @list = requires( MODULE ); Global Variables$Module::Load::Conditional::VERBOSE $Module::Load::Conditional::FIND_VERSION $Module::Load::Conditional::CHECK_INC_HASH $Module::Load::Conditional::CACHE $Module::Load::Conditional::ERRO

IO::Socket::UNIX - Object interface for AF_UNIX domain sockets

NAME SYNOPSIS DESCRIPTION CONSTRUCTOR METHODS SEE ALSO AUTHOR COPYRIGHT NAME IO::Socket::UNIX - Object interface for AF_UNIX domain sockets SYNOPSIS use IO::Socket::UNIX; my $SOCK_PATH = "$ENV{HOME}/unix-domain-socket-test.sock"; # Server: my $server = IO::Socket::UNIX->new( Type => SOCK_STREAM(), Local => $SOCK_PATH, Listen => 1, ); my $count = 1; while (my $conn = $server->accept()) { $conn->print("Hello " . ($count++) . "\n"); } # Client: my $client =

perldebug - Perl debugging

NAME DESCRIPTION The Perl DebuggerCalling the Debugger Debugger Commands Configurable Options Debugger Input/Output Debugging Compile-Time Statements Debugger Customization Readline Support / History in the Debugger Editor Support for Debugging The Perl Profiler Debugging Regular Expressions Debugging Memory Usage SEE ALSO BUGS NAME perldebug - Perl debugging DESCRIPTION First of all, have you tried using the -w switch? If you're new to the Perl debugger, you may prefer to read perldeb

perlmodinstall - Installing CPAN Modules

NAME DESCRIPTIONPREAMBLE PORTABILITY HEY AUTHOR COPYRIGHT NAME perlmodinstall - Installing CPAN Modules DESCRIPTION You can think of a module as the fundamental unit of reusable Perl code; see perlmod for details. Whenever anyone creates a chunk of Perl code that they think will be useful to the world, they register as a Perl developer at http://www.cpan.org/modules/04pause.html so that they can then upload their code to the CPAN. The CPAN is the Comprehensive Perl Archive Network and can be

link

link OLDFILE,NEWFILE Creates a new filename linked to the old filename. Returns true for success, false otherwise. Portability issues: link in perlport.

Encode::CJKConstants.pm -- Internally used by Encode::??::ISO_2022_*

NAME NAME Encode::CJKConstants.pm -- Internally used by Encode::??::ISO_2022_*