Env - perl module that imports environment variables as scalars or arrays

NAME SYNOPSIS DESCRIPTION LIMITATIONS AUTHOR NAME Env - perl module that imports environment variables as scalars or arrays SYNOPSIS use Env; use Env qw(PATH HOME TERM); use Env qw($SHELL @LD_LIBRARY_PATH); DESCRIPTION Perl maintains environment variables in a special hash named %ENV . For when this access method is inconvenient, the Perl module Env allows environment variables to be treated as scalar or array variables. The Env::import() function ties environment variables with suitable nam

English - use nice English (or awk) names for ugly punctuation variables

NAME SYNOPSIS DESCRIPTION PERFORMANCE NAME English - use nice English (or awk) names for ugly punctuation variables SYNOPSIS use English; use English qw( -no_match_vars ) ; # Avoids regex performance # penalty in perl 5.16 and # earlier ... if ($ERRNO =~ /denied/) { ... } DESCRIPTION This module provides aliases for the built-in variables whose names no one seems to like to read. Variables with side-effects which get tr

endservent

endservent These routines are the same as their counterparts in the system C library. In list context, the return values from the various get routines are as follows: # 0 1 2 3 4 ( $name, $passwd, $gid, $members ) = getgr* ( $name, $aliases, $addrtype, $net ) = getnet* ( $name, $aliases, $port, $proto ) = getserv* ( $name, $aliases, $proto ) = getproto* ( $name, $aliases, $addrtype, $length, @addrs ) = getho

endpwent

endpwent

endprotoent

endprotoent

endnetent

endnetent

endhostent

endhostent

endgrent

endgrent

END

END These compile phase keywords are documented in BEGIN, UNITCHECK, CHECK, INIT and END in perlmod.

encoding - allows you to write your script in non-ASCII and non-UTF-8

NAME WARNING SYNOPSIS DESCRIPTION OPTIONSSetting STDIN and/or STDOUT individually The :locale sub-pragma CAVEATSSIDE EFFECTS DO NOT MIX MULTIPLE ENCODINGS Prior to Perl v5.22 Prior to Encode version 1.87 Prior to Perl v5.8.1 EXAMPLE - Greekperl BUGS HISTORY SEE ALSO NAME encoding - allows you to write your script in non-ASCII and non-UTF-8 WARNING This module has been deprecated since perl v5.18. See DESCRIPTION and BUGS. SYNOPSIS use encoding "greek"; # Perl like Greek to you? use encod